HomeSort by relevance Sort by last modified time
    Searched defs:received_body_size (Results 1 - 2 of 2) sorted by null

  /external/libmicrohttpd/src/examples/
mhd2spdy_structures.h 117 size_t received_body_size; member in struct:Proxy
  /external/libmicrohttpd/src/spdy2http/
proxy.c 173 size_t received_body_size; member in struct:Proxy
414 if(!store_in_buffer(buf, size, &proxy->received_body, &proxy->received_body_size))
735 if((proxy->receiving_done && !proxy->received_body_size) || !proxy->is_with_body_data || max < 1)
747 if(!proxy->received_body_size)//nothing to write now
754 ret = get_from_buffer(&(proxy->received_body), &(proxy->received_body_size), ptr, max);
762 if(max >= proxy->received_body_size)
764 ret = proxy->received_body_size;
770 if(NULL == (newbody = malloc(proxy->received_body_size - max)))
775 memcpy(newbody, proxy->received_body + max, proxy->received_body_size - max);
780 proxy->received_body_size -= ret
    [all...]

Completed in 67 milliseconds