Changeset 2945c6f for lib/http_client.c


Ignore:
Timestamp:
2010-07-24T21:16:18Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
f1f7b5e
Parents:
ef14a83 (diff), 593971d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge ui-fix (which includes killerbee (i.e. file transfers and libpurple
support)). ui-fix rewrites the complete IRC core, fixing many things that
were broken/hacky/limited so far.

The list is too long to include here, but http://wiki.bitlbee.org/UiFix
has a summary, as does doc/CHANGES and of course the full revision history.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lib/http_client.c

    ref14a83 r2945c6f  
    151151        if( req->bytes_written < req->request_length )
    152152                req->inpa = b_input_add( source,
    153                                          req->ssl ? ssl_getdirection( req->ssl ) : GAIM_INPUT_WRITE,
     153                                         req->ssl ? ssl_getdirection( req->ssl ) : B_EV_IO_WRITE,
    154154                                         http_connected, req );
    155155        else
    156                 req->inpa = b_input_add( source, GAIM_INPUT_READ, http_incoming_data, req );
     156                req->inpa = b_input_add( source, B_EV_IO_READ, http_incoming_data, req );
    157157       
    158158        return FALSE;
     
    236236        /* There will be more! */
    237237        req->inpa = b_input_add( req->fd,
    238                                  req->ssl ? ssl_getdirection( req->ssl ) : GAIM_INPUT_READ,
     238                                 req->ssl ? ssl_getdirection( req->ssl ) : B_EV_IO_READ,
    239239                                 http_incoming_data, req );
    240240       
Note: See TracChangeset for help on using the changeset viewer.