Changes in lib/http_client.h [fb98634:516a9c6]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/http_client.h
rfb98634 r516a9c6 61 61 int finished; /* Set to non-0 if the request was completed 62 62 successfully. */ 63 int redir_ttl; /* You can set it to 0 if you don't want 64 http_client to follow them. */ 63 65 64 66 http_input_function func; … … 79 81 you want to add some extra headers. As you can see, HTTPS connections 80 82 are also supported (using ssl_client). */ 81 void *http_dorequest( char *host, int port, int ssl, char *request, http_input_function func, gpointer data ); 82 void *http_dorequest_url( char *url_string, http_input_function func, gpointer data ); 83 84 void http_free( struct http_request *req ); 83 struct http_request *http_dorequest( char *host, int port, int ssl, char *request, http_input_function func, gpointer data ); 84 struct http_request *http_dorequest_url( char *url_string, http_input_function func, gpointer data );
Note: See TracChangeset
for help on using the changeset viewer.