aboutsummaryrefslogtreecommitdiff
path: root/src/IO/http.c
AgeCommit message (Collapse)Author
2011-09-14privacy: never send cookies in third-party requestscorvid
as mentioned in section 7.1 of RFC 6265
2011-07-15Eliminated a pack of compiler warnings (gcc-4.6.1 amd64)Jorge Arellano Cid
2010-02-27trim some spacescorvid
2010-02-11send Accept headercorvid
I would be more specific than image/* if servers were more likely to pay attention. The purpose for adding this is to go along with the User-Agent change, since I've seen server code disallow queries that are supposedly from Firefox but have no Accept header.
2010-02-11add http_user_agent preferenceAlexander Voigt, corvid
thread: http://lists.auriga.wearlab.de/pipermail/dillo-dev/2010-February/007267.html
2010-02-02fix HostConnection_t leakJohannes Hofmann
Found by Jeremy's automatic valgrind logs, pointed out by corvid.
2010-01-24limit the number of simultaneous connectionsJohannes Hofmann
The number of simultaneous connections to a single server is now limited by prefs.http_max_conns (default 6). This avoids opening hundreds of connections on pages with many images (BUG 685). This commit is partly based on a prototype by Jorge Arellano Cid.
2009-10-17suppress an unused parameter warningcorvid
2009-09-20trim some spacescorvid
2009-08-30change no_proxy test from substring to suffixcorvid
2009-08-07Added a_Chain_bfcb() to the CCC API (fixed three bugs with it)Jorge Arellano Cid
2009-08-06Interim bugfix patch for the new CCC OpAbortJorge Arellano Cid
2009-08-05mergeJorge Arellano Cid
2009-08-05Changed the CCCs to build in one step (for both HTTP and DPI)Jorge Arellano Cid
2009-08-04tiny cleanup of query stringcorvid
2009-06-22remove system includescorvid
2009-06-01proxy support for HTTPScorvid
2009-05-31Bound at-exit memory deallocationcorvid
2009-04-04static for Http_make_content_typecorvid
2009-03-25fix POST form submission for 64-bitcorvid
2009-02-09whitespace cleanup: 's/ +$//g'Jorge Arellano Cid
2009-01-15Added the "http_language" dillorc option for setting HTTP's Accept-Language.2.1-noCsscorvid
2008-12-20Minor fixes in auth.cJorge Arellano Cid
2008-12-20Added basic authentication!Jorge Arellano Cid
2008-11-11- Allowed the rc parser to skip whitespace around the equal sign.jcid
2008-11-10- Fixed the proxy URL parameter for Http_must_use_proxy().jcid
2008-10-22- Added ipv6 addresses iteration and ipv4 fallback.jcid
2008-10-14- Used the URL authority part instead of stripped default port in HTTP query.jcid
2008-09-28- Switched from DEBUG_MSG to MSG.jcid
2008-09-14- Forbid dpi GET and POST from non dpi-generated urls.jcid
- Cleaned up a_Url_new().
2008-05-26- Enabled proxy_user in preferences.jcid
2008-05-22- s/strdup/dStrdup/jcid
2008-05-17- CCC: added reentrancy control to the OpEnd and OpAbort operations.jcid
- CCC: enhanced the debug function and implemented OpAbort for dpi.
2008-05-10+ Fixed a bug in the code that remembers the scrolling position.jcid
2008-04-26- Changed the Accept-Charset string.jcid
2008-04-11- Fixed a cookies-related dillo freeze bug happening at:jcid
http://www.fltk.org/newsgroups.php?gfltk.general+v:24912
2008-04-07- Added dStr_printable() to dlib.jcid
2008-04-04 - Fixed a SEGFAULT bug in http.c (handling of web->url).jcid
- Fixed handling of #anchors with repush, and other operations.
2008-03-29- Switched URL_DATA type from char* to a dStr.jcid
2008-03-17- Fixed EOL to be "\r\n" instead of plain "\n".jcid
2008-03-13- Reordered the HTTP query headers according to the RFC.jcid
2008-03-13- Added support for "charset" in the META element.jcid
2008-03-03- Avoid empty boundary string on zero parts (corner case)jcid
2008-02-28+ Added multipart/form-data encoding for form submission.jcid
2008-02-24+ Moved cookie headers into a single function.jcid
2008-02-01added the missing \r\n to referer patchjcid
2008-01-31- Added a http_referer preference. See details in dillorc2.jcid
2007-12-31Implemented the SELECT element in FORMS!jcid
2007-11-28Added HTTP-1.1's chunked transfer support!jcid
2007-11-13Added an experimental gzip decoder!jcid