summaryrefslogtreecommitdiff
path: root/src/decode.c
AgeCommit message (Collapse)Author
2024-08-07Make Dillo C99 standard compliantRodrigo Arias Mallo
Reviewed-by: dogma
2024-03-09Use Doxygen comments for C filesRodrigo Arias Mallo
2016-05-24silence MSGcorvid
2014-12-21redundant ';'corvid
2014-07-17http persistent connections initial patchcorvid
2014-03-30turn off MSGcorvid
2014-03-15Accept-Encoding: deflatecorvid
The httpbis people currently word it as: 'Note: Some non-conformant implementations send the "deflate" compressed data without the zlib wrapper.'
2012-11-26rm Decode_is_ascii()corvid
An "official" -- ostensible -- reason is that we shouldn't treat a supposedly ascii page like utf-8 even if it is a subset. A deeper reason is that I've long felt a little bit bad about spending time on string comparisions that hardly ever match.
2011-11-11locale-independent ASCII character case handlingcorvid
Basically, I and i are different letters in Turkic languages, and this causes problems for str(n)casecmp and toupper/tolower in these locales when dillo is dealing with ASCII.
2009-10-25stricter test for "chunked" transfer encodingcorvid
2009-09-26MSG_WARN for unknown charset decodingcorvid
2009-05-26Minor utf8 refactorcorvid
2009-02-23let's keep what was successfully uncompressed before encountering errorcorvid
2009-02-09whitespace cleanup: 's/ +$//g'Jorge Arellano Cid
2009-01-22Fixed a memory leak in gzip decoder.Jorge Arellano Cid
2008-10-22- Allowed compilation with older machines by removing a few C99isms.jcid
- Added use of inttypes.h when stdint.h isn't found.
2008-09-24- Added "x-gzip" as "gzip" synonym.jcid
2008-08-13- Corrected a misleading comment.jcid
2008-06-27- enabled prefs.vw_fontname + minor cleanup.jcid
2008-06-14- Added an error message to gzip decompression.jcid
2008-05-27- Made an input preserving decoder implementation.jcid
2008-03-14- Added suport for old iconv() (const char** as 2nd arg).jcid
2008-03-04- Fixed Decode_is_ascii()jcid
2007-11-28Added HTTP-1.1's chunked transfer support!jcid
2007-11-27Made the decoder a filter by avoiding one copy pass.jcid
2007-11-14Fixed signedness problems in decode.cjcid
2007-11-14Added the missing decode.[ch]jcid