summaryrefslogtreecommitdiff
path: root/http.c
Commit message (Expand)AuthorAgeFilesLines
...
* Fix crashing http server when callback do not reply in place from *gencb*Azat Khuzhin2017-11-041-2/+2
* Allow bodies for GET/DELETE/OPTIONS/CONNECTAzat Khuzhin2017-10-301-7/+6
* Do not crash when evhttp_send_reply_start() is called after a timeout.Andreas Gustafsson2017-10-301-0/+4
* Fix crashing http server when callback do not reply in placeAzat Khuzhin2017-10-291-3/+5
* fix handling of close_notify (ssl) in http with openssl buffereventsAzat Khuzhin2017-10-221-0/+2
* http: do not use local settings for Date headerVis Virial2016-12-191-14/+1
* http: fix formatter for pritnf for req->ntoread (osx)Azat Khuzhin2016-12-061-2/+2
* use ev_uint16_t instead of unsigned short for portThomas Bernard2016-10-261-4/+4
* Fix evhttp_uriencode() regression.Zonr Chang2016-08-271-1/+1
* removed unused varsMark Ellzey2016-08-141-1/+0
* pointer overflow checks for evhttp_uriencodeMark Ellzey2016-08-141-5/+27
* [Issue #313] set method to ASCII "NULL" if evhttp_method() returns NULLMark Ellzey2016-06-241-1/+4
* evhttp_have_expect(): fix -Wlogical-not-parenthesesAzat Khuzhin2016-03-251-1/+1
* http: set fd to -1 unconditioally, to avoid leaking of DNS requestsAzat Khuzhin2016-03-241-1/+1
* http: avoid leaking of fd in evhttp_connection_free()Azat Khuzhin2016-03-231-0/+3
* http: get fd from be layer during connection resetAzat Khuzhin2016-03-231-0/+3
* http: make fallback for EVHTTP_CON_READ_ON_WRITE_ERROR more cleanerAzat Khuzhin2016-03-111-13/+10
* http: fix EVHTTP_CON_READ_ON_WRITE_ERROR when it doesn't supported by OSAzat Khuzhin2016-03-111-0/+7
* http: do not do function calls under EVUTIL_ASSERT() to fix NDEBUG buildsAzat Khuzhin2016-03-111-2/+5
* http: fix leaking of response_code_lineAzat Khuzhin2016-03-111-0/+2
* http: fix "Expect: 100-continue" client sideAzat Khuzhin2016-03-111-22/+47
* http: assert's that evbuffer_drain() success on connection resetAzat Khuzhin2016-03-111-2/+2
* http: take EVHTTP_CON_LINGERING_CLOSE into account for "Expect: 100-Continue"Azat Khuzhin2016-03-091-8/+22
* http: lingering close (like nginx have) for entity-too-largeAzat Khuzhin2016-03-091-4/+42
* http: read server response even after server closed the connectionAzat Khuzhin2016-03-091-0/+29
* http: fix conflicts EVHTTP_CON_AUTOFREE and EVHTTP_CON_REUSE_CONNECTED_ADDRAzat Khuzhin2016-02-241-5/+6
* http: coding style issueAzat Khuzhin2016-02-241-2/+1
* http: avoid epoll_ctl() on already closed fd (triggers by http/chunk_out)Azat Khuzhin2015-11-201-0/+1
* http: install timeout for read too during connect for sslAzat Khuzhin2015-11-181-2/+2
* Include <sys/ioctl.h>, <sys/resource.h> and <sys/wait.h> optionally.Ed Schouten2015-09-101-4/+8
* http: fix evhttp_request_own() by checking EVHTTP_USER_OWNED in more casesAzat Khuzhin2015-09-091-11/+19
* http: fix detecting EOF without writeAzat Khuzhin2015-09-091-8/+3
* http: eliminate warning about "socklen" in evhttp_connection_connect_()Azat Khuzhin2015-08-191-4/+2
* http: reuse connected address only with EVHTTP_CON_REUSE_CONNECTED_ADDRAzat Khuzhin2015-08-181-1/+17
* http: use IP address that we got before (if any) during retryingAzat Khuzhin2015-08-181-2/+17
* bufferevent: move conn_address out from http into buffereventAzat Khuzhin2015-08-181-13/+1
* http: introduce evhttp_request_free_() helperAzat Khuzhin2015-08-181-4/+9
* http: introduce evhttp_is_request_connection_close() helperAzat Khuzhin2015-08-181-8/+10
* Merge pull request #190 from JohnOhl/evhttp-post-fixMark Ellzey2015-06-171-0/+3
|\
| * evhttp: Fix failure to send all output data for POST/PUT requestsJohn Ohl2014-11-241-0/+3
* | Merge remote-tracking branch 'origin/pr/182'Nick Mathewson2014-11-301-0/+34
|\ \
| * | Prevent duplicate event_del on fdJohn Ohl2014-11-161-0/+1
| * | Implement interface that provides the ability to have an outbound evhttp_conn...John Ohl2014-10-261-0/+33
| |/
* | http: reset connection before installing retry timer (fix http retries handling)Azat Khuzhin2014-09-301-1/+1
|/
* Merge pull request #118 from azat/http-forward-family-to-buffereventNick Mathewson2014-09-181-1/+8
|\
| * Add evhttp_connection_set_family() to set addrinfo->family for DNS requestsAzat Khuzhin2014-03-211-1/+8
* | Catch over-large port numbers early in httpNick Mathewson2014-03-181-0/+2
* | evhttp_request_set_on_complete_cb to be more specific about what the function...Andrew Sweeney2014-01-061-2/+2
* | Provide on request complete callback facilityAndrew Sweeney2014-01-051-0/+12
* | Allow registering callback for parsing HTTP headersBalint Reczey2013-11-181-0/+15