Lines Matching refs:max_body_size
640 evcon->max_body_size = EV_UINT64_MAX; in evhttp_connection_set_max_body_size()
642 evcon->max_body_size = new_max_body_size; in evhttp_connection_set_max_body_size()
889 if (req->body_size + (size_t)ntoread > req->evcon->max_body_size) { in evhttp_handle_chunked_read()
1002 if (req->body_size > req->evcon->max_body_size || in evhttp_read_body()
1004 (size_t)req->ntoread > req->evcon->max_body_size)) { in evhttp_read_body()
1954 …if ((req->evcon->max_body_size <= EV_INT64_MAX) && (ev_uint64_t)req->ntoread > req->evcon->max_bod… in evhttp_get_body()
2088 evcon->max_body_size = EV_SIZE_MAX; in evhttp_connection_base_new()
3386 evhttp_set_max_body_size(struct evhttp* http, ev_ssize_t max_body_size) in evhttp_set_max_body_size() argument
3388 if (max_body_size < 0) in evhttp_set_max_body_size()
3391 http->default_max_body_size = max_body_size; in evhttp_set_max_body_size()
3701 evcon->max_body_size = http->default_max_body_size; in evhttp_get_request_connection()