Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc.c

    re1720ce re046390  
    9090        sock_make_nonblocking( irc->fd );
    9191       
    92         irc->r_watch_source_id = b_input_add( irc->fd, GAIM_INPUT_READ, bitlbee_io_current_client_read, irc );
     92        irc->r_watch_source_id = b_input_add( irc->fd, B_EV_IO_READ, bitlbee_io_current_client_read, irc );
    9393       
    9494        irc->status = USTATUS_OFFLINE;
     
    653653                   in the event queue. */
    654654                /* Really can't be done as long as the code doesn't do error checking very well:
    655                 if( bitlbee_io_current_client_write( irc, irc->fd, GAIM_INPUT_WRITE ) ) */
     655                if( bitlbee_io_current_client_write( irc, irc->fd, B_EV_IO_WRITE ) ) */
    656656               
    657657                /* So just always do it via the event handler. */
    658                 irc->w_watch_source_id = b_input_add( irc->fd, GAIM_INPUT_WRITE, bitlbee_io_current_client_write, irc );
     658                irc->w_watch_source_id = b_input_add( irc->fd, B_EV_IO_WRITE, bitlbee_io_current_client_write, irc );
    659659        }
    660660       
     
    682682                if( now )
    683683                {
    684                         bitlbee_io_current_client_write( irc, irc->fd, GAIM_INPUT_WRITE );
     684                        bitlbee_io_current_client_write( irc, irc->fd, B_EV_IO_WRITE );
    685685                }
    686686                temp = temp->next;
Note: See TracChangeset for help on using the changeset viewer.