NetSurf
|
fetch POST data More...
#include <fetch.h>
Data Fields | |
fetch_postdata_type | type |
union { | |
char * urlenc | |
Url encoded POST string if type is FETCH_POSTDATA_URLENC. More... | |
struct fetch_multipart_data * multipart | |
Multipart post data if type is FETCH_POSTDATA_MULTIPART. More... | |
} | data |
union { ... } fetch_postdata::data |
Referenced by fetch_curl_alloc_postdata(), fetch_curl_free_postdata(), and fetch_curl_set_postdata().
struct fetch_multipart_data* fetch_postdata::multipart |
Multipart post data if type is FETCH_POSTDATA_MULTIPART.
Definition at line 128 of file fetch.h.
Referenced by fetch_curl_alloc_postdata(), fetch_curl_free_postdata(), and fetch_curl_set_postdata().
fetch_postdata_type fetch_postdata::type |
Definition at line 123 of file fetch.h.
Referenced by fetch_curl_alloc_postdata(), fetch_curl_free_postdata(), fetch_curl_process_headers(), and fetch_curl_set_postdata().
char* fetch_postdata::urlenc |
Url encoded POST string if type is FETCH_POSTDATA_URLENC.
Definition at line 126 of file fetch.h.
Referenced by fetch_curl_alloc_postdata(), fetch_curl_free_postdata(), and fetch_curl_set_postdata().