diff options
author | jcid <devnull@localhost> | 2007-11-28 15:09:07 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2007-11-28 15:09:07 +0100 |
commit | ba08ee0b4e87d71aae5c96aff1bd89e5c1dd6827 (patch) | |
tree | 20b43f3a6620db27b1a1efd7ae346b718eb93022 /src/decode.h | |
parent | b0358c3dea7a0f34dc494d82be08ae814a480a50 (diff) |
Added HTTP-1.1's chunked transfer support!
Diffstat (limited to 'src/decode.h')
-rw-r--r-- | src/decode.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/decode.h b/src/decode.h index 7f8045cd..b3f56eb3 100644 --- a/src/decode.h +++ b/src/decode.h @@ -17,6 +17,7 @@ struct _Decode { void (*free) (Decode *dc); }; +Decode *a_Decode_transfer_init(const char *format); Decode *a_Decode_content_init(const char *format); Decode *a_Decode_charset_init(const char *format); Dstr *a_Decode_process(Decode *dc, Dstr *input); |