diff options
author | Adam Chlipala <adam@chlipala.net> | 2013-12-12 10:24:38 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2013-12-12 10:24:38 -0500 |
commit | fdeb6edadce0a9da274449ac1450e871e183734b (patch) | |
tree | 58dd68d97c0fec25702f9be73748da285c3c74be /include | |
parent | bc4cdf7f4a995846125917ac0abb1a67bfd81fca (diff) |
HTTP: avoid duplicate Content-length
Diffstat (limited to 'include')
-rw-r--r-- | include/urweb/urweb_cpp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/urweb/urweb_cpp.h b/include/urweb/urweb_cpp.h index d1fb4d37..cf046e83 100644 --- a/include/urweb/urweb_cpp.h +++ b/include/urweb/urweb_cpp.h @@ -209,6 +209,7 @@ uw_Basis_string uw_Basis_requestHeader(struct uw_context *, uw_Basis_string); void uw_write_header(struct uw_context *, uw_Basis_string); void uw_clear_headers(struct uw_context *); +int uw_has_contentLength(struct uw_context *); void uw_Basis_clear_page(struct uw_context *); uw_Basis_string uw_Basis_get_cookie(struct uw_context *, uw_Basis_string c); |