aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/http_client.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2006-05-18 18:41:18 +0200
committerWilmer van der Gaast <wilmer@gaast.net>2006-05-18 18:41:18 +0200
commit0eec3866ac883667045cc028d5f0dac0b4872de7 (patch)
tree2e4e0d9d247d6f57c127d2ce60c2a55848f22311 /protocols/http_client.h
parent266fe2fe078833bc5489a3fddd970b9307a7bbfa (diff)
Added a body_size attribute to http_client and fixed a possible NULL
dereference bug.
Diffstat (limited to 'protocols/http_client.h')
-rw-r--r--protocols/http_client.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/http_client.h b/protocols/http_client.h
index 0935b5f6..860cdd86 100644
--- a/protocols/http_client.h
+++ b/protocols/http_client.h
@@ -38,6 +38,7 @@ struct http_request
int status_code;
char *reply_headers;
char *reply_body;
+ int body_size;
int finished;
void *ssl;