Changeset 368861e


Ignore:
Timestamp:
2007-09-21T14:16:48Z (17 years ago)
Author:
VMiklos <vmiklos@…>
Branches:
master
Children:
3d9a92b
Parents:
8de38e9
Message:

skype_data struct: some more comments
also renmae r_inpa to bfd

File:
1 edited

Legend:

Unmodified
Added
Removed
  • skype/skype.c

    r8de38e9 r368861e  
    4848        struct im_connection *ic;
    4949        char *username;
     50        /* The effective file descriptor. We store it here so any function can
     51         * write() to it. */
    5052        int fd;
    51         int r_inpa;
     53        /* File descriptor returned by bitlbee. we store it so we know when
     54         * we're connected and when we aren't. */
     55        int bfd;
    5256        /* When we receive a new message id, we query the handle, then the
    5357         * body. Store the handle here so that we imcb_buddy_msg() when we got
     
    346350                return FALSE;
    347351
    348         if( sd->r_inpa <= 0 )
    349                 sd->r_inpa = b_input_add( sd->fd, GAIM_INPUT_READ, skype_read_callback, ic );
     352        if( sd->bfd <= 0 )
     353                sd->bfd = b_input_add( sd->fd, GAIM_INPUT_READ, skype_read_callback, ic );
    350354
    351355        /* This will download all buddies. */
Note: See TracChangeset for help on using the changeset viewer.