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

/external/libmicrohttpd/src/examples/
H A Dmhd2spdy_structures.h116 size_t http_body_size; member in struct:Proxy
/external/libmicrohttpd/src/spdy2http/
H A Dproxy.c172 size_t http_body_size; member in struct:Proxy
459 if(!proxy->http_body_size)//nothing to write now
466 ret = get_from_buffer(&(proxy->http_body), &(proxy->http_body_size), buffer, max);
474 if((proxy->curl_done || proxy->curl_error) && 0 == proxy->http_body_size) *more = false;
697 if(!store_in_buffer(contents, realsize, &proxy->http_body, &proxy->http_body_size))
707 proxy->http_body = realloc(proxy->http_body, proxy->http_body_size + realsize);
714 memcpy(proxy->http_body + proxy->http_body_size, contents, realsize);
715 proxy->http_body_size += realsize;

Completed in 61 milliseconds