Ignore:
Timestamp:
2010-07-24T13:29:48Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
03f3828
Parents:
938c305 (diff), c495217 (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:

Merging libyahoo2 fixes. Now completely up-to-date with libyahoo2 svn
again, should try to keep it up a little bit better and submit my fixes
upstream.

This also adds code for Yahoo! file transfers but BitlBee isn't using it
yet. (It doesn't seem to support flow control which makes this complicated.)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/yahoo/yahoo_httplib.h

    r938c305 rc8791f2  
    2929#include "yahoo2_types.h"
    3030
    31 char *yahoo_urlencode(const char *instr);
    32 char *yahoo_urldecode(const char *instr);
    33 char *yahoo_xmldecode(const char *instr);
     31        char *yahoo_urlencode(const char *instr);
     32        char *yahoo_urldecode(const char *instr);
     33        char *yahoo_xmldecode(const char *instr);
    3434
    35 int yahoo_tcp_readline(char *ptr, int maxlen, int fd);
    36 void yahoo_http_post(int id, const char *url, const char *cookies, long size,
    37                 yahoo_get_fd_callback callback, void *data);
    38 void yahoo_http_get(int id, const char *url, const char *cookies,
    39                 yahoo_get_fd_callback callback, void *data);
    40 void yahoo_get_url_fd(int id, const char *url, const struct yahoo_data *yd,
    41                 yahoo_get_url_handle_callback callback, void *data);
    42 
     35        int yahoo_tcp_readline(char *ptr, int maxlen, void *fd);
     36        void yahoo_http_post(int id, const char *url, const char *cookies,
     37                long size, yahoo_get_fd_callback callback, void *data);
     38        void yahoo_http_get(int id, const char *url, const char *cookies,
     39                int http11, int keepalive, yahoo_get_fd_callback callback,
     40                void *data);
     41        void yahoo_http_head(int id, const char *url, const char *cookies,
     42                int size, char *payload, yahoo_get_fd_callback callback,
     43                void *data);
    4344
    4445#ifdef __cplusplus
    4546}
    4647#endif
    47 
    4848#endif
Note: See TracChangeset for help on using the changeset viewer.