summaryrefslogtreecommitdiff
path: root/http.c
Commit message (Expand)AuthorAge
* Allow empty reason line in HTTP statusHEADmasterPierre Phaneuf2010-04-28
* do not leak the request object on persistent connectionsNiels Provos2010-04-23
* Replace EVUTIL_CLOSESOCKET macro with a functionSebastian Sjöberg2010-04-14
* Avoid errors in http.c when building with VC 2003 .NETBrodie Thiesfield2010-03-08
* Replace users of "int fd" with "evutil_socket_t fd" in portable codeNick Mathewson2010-03-05
* Update all our copyright notices to say "2010"Nick Mathewson2010-03-04
* Clean up formatting: remove trailing spacesNick Mathewson2010-02-18
* Clean up formatting: use tabs, not 8-spaces, to indent.Nick Mathewson2010-02-18
* Clean up formatting: Disallow space-before-tab.Nick Mathewson2010-02-18
* Merge remote branch 'niels/http_chunk'Nick Mathewson2010-02-04
|\
| * make evhttp_send() safe against terminated connections, tooNiels Provos2010-02-03
* | Merge remote branch 'niels/http_chunk'Nick Mathewson2010-02-03
|\ \ | |/
| * do not fail while sending on http connections the client closed.Niels Provos2010-02-03
* | Merge remote branch 'github/http_listener'Nick Mathewson2010-02-03
|\ \ | |/ |/|
| * Make http use evconnlistener.Nick Mathewson2010-01-14
* | Call event_debug_unassign on internal eventsNick Mathewson2010-01-25
* | Fix windows and msvc buildNick Mathewson2010-01-23
* | Check more internal event_add() calls for failureNick Mathewson2010-01-22
* | do not use a function to assign the evdns base; instead assign it via evhttp_...Niels Provos2010-01-14
* | Allow http connections to use evdns for hostname looksups.Nick Mathewson2010-01-14
|/
* Introduced evutil_make_socket_closeonexec() to preserve fd flags for F_SETFD.Jardel Weyrich2009-12-29
* Remove most calls to event_err() in http and deal with memory errors insteadNiels Provos2009-11-19
* On FreeBSD and other OSes, connect can return ECONREFUSED immediately; instea...Niels Provos2009-11-19
* Add two implementations of getaddrinfo: one blocking and one nonblocking.Nick Mathewson2009-11-16
* Fix a couple of event_debug calls.Nick Mathewson2009-11-14
* Patch from Ryan Phillips: accept ipv6 addresses returned by getaddrinfo in ht...Nick Mathewson2009-11-09
* We do not work any more without an event-config.h; stop pretending that it is...Nick Mathewson2009-11-06
* Fix some build warnings on MSVC, mostly related to signed/unsigned comparisons.Nick Mathewson2009-11-05
* Fix a few types to use compatible versionsNick Mathewson2009-11-05
* Implement size limits on HTTP header length and body length.Nick Mathewson2009-11-04
* Add a bufferevent function to resolve a name then connect to it.Nick Mathewson2009-11-03
* Use EVUTIL_ASSERT() consistently instead of assert.Nick Mathewson2009-10-26
* Spelling fixes in comments and strings.Nick Mathewson2009-10-16
* Fix build warnings and add changelog entry for evhttp patches.Nick Mathewson2009-08-16
* Define evhttp_del_accept_socketNick Mathewson2009-08-16
* Define evhttp_{bind,accept}_socket_with_handleNick Mathewson2009-08-16
* Make evhttp_bound_socket visible, and provide an accessor to its fdNick Mathewson2009-08-16
* Export an ev_socklen_t.Nick Mathewson2009-07-30
* Export evutil_str[n]casecmp as evutil_ascii_str[n]casecmp.Nick Mathewson2009-07-28
* Do not use the "evbuffer_" prefix to denote parts of bufferevents.Nick Mathewson2009-05-13
* Add and use locale-independent strcasecmp functions.Nick Mathewson2009-05-07
* Use fewer _compat.h headers in our own code.Nick Mathewson2009-05-02
* More msvc build tweaks.Nick Mathewson2009-05-01
* Add missing case to make http.c compile with warnings enabled.Nick Mathewson2009-04-23
* Fix c89 bugs reported by Cory Stup.Nick Mathewson2009-04-23
* Actually stop using EVBUFFER_LENGTH/DATA, and move them to buffer_compat.hNick Mathewson2009-04-17
* have evhttp_set_cb return an int; -1 on failure, 0 on success; this is better...Niels Provos2009-04-17
* document evhttp_parse_query betterNiels Provos2009-04-11
* previous commit changed the semantics of evhttp_decode_uri; need a test for thatNiels Provos2009-04-11
* Fix parsing of queries where the encoded queries contained \r, \n or +Niels Provos2009-04-10