- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/yahoo/yahoo_httplib.h
r9034ba0 rb7d3cc34 29 29 #include "yahoo2_types.h" 30 30 31 32 33 31 char *yahoo_urlencode(const char *instr); 32 char *yahoo_urldecode(const char *instr); 33 char *yahoo_xmldecode(const char *instr); 34 34 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); 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 44 43 45 44 #ifdef __cplusplus 46 45 } 47 46 #endif 47 48 48 #endif
Note: See TracChangeset
for help on using the changeset viewer.