From d14c3b4570fd3e5e9db827d9b97e4eed69511c83 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 5 Nov 2009 18:25:46 +0000 Subject: [PATCH] Fix another ssize_t user svn:r1503 --- Makefile.am | 1 - include/event2/http.h | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index ca805efa..81857c42 100644 --- a/Makefile.am +++ b/Makefile.am @@ -55,7 +55,6 @@ EXTRA_DIST = \ whatsnew-2.0.txt \ bufferevent_async.c \ WIN32-Code/event-config.h \ - WIN32-Code/config.h \ WIN32-Code/win32.c \ WIN32-Code/tree.h \ WIN32-Prj/event_test/event_test.dsp \ diff --git a/include/event2/http.h b/include/event2/http.h index 4a7fba3f..ade9e20b 100644 --- a/include/event2/http.h +++ b/include/event2/http.h @@ -372,10 +372,10 @@ void evhttp_request_own(struct evhttp_request *req); int evhttp_request_is_owned(struct evhttp_request *req); void evhttp_connection_set_max_headers_size(struct evhttp_connection *evcon, - ssize_t new_max_headers_size); - + ev_ssize_t new_max_headers_size); + void evhttp_connection_set_max_body_size(struct evhttp_connection* evcon, - ssize_t new_max_body_size); + ev_ssize_t new_max_body_size); /** Frees an http connection */ void evhttp_connection_free(struct evhttp_connection *evcon); -- 2.40.0