Searched defs:http_body (Results 1 - 2 of 2) sorted by relevance

/external/libmicrohttpd/src/examples/
H A Dmhd2spdy_structures.h114 void *http_body; member in struct:Proxy
/external/libmicrohttpd/src/spdy2http/
H A Dproxy.c169 void *http_body; member in struct:Proxy
466 ret = get_from_buffer(&(proxy->http_body), &(proxy->http_body_size), buffer, max);
517 free(proxy->http_body);
518 proxy->http_body = NULL;
697 if(!store_in_buffer(contents, realsize, &proxy->http_body, &proxy->http_body_size))
704 if(NULL == proxy->http_body)
705 proxy->http_body = malloc(realsize);
707 proxy->http_body = realloc(proxy->http_body, proxy->http_body_size + realsize);
708 if(NULL == proxy->http_body)
[all...]

Completed in 81 milliseconds