Branch :
| Author | Commit | Date | CI | Message |
|---|---|---|---|---|
| 30316177 | 2016-06-28 10:37:24 | [#372] check for errno.h | ||
| 9fde5189 | 2016-02-15 00:12:54 | http: lingering close (like nginx have) for entity-too-large By lingering close I mean something what nginx have for this name, by this term I mean that we need to read all the body even if it's size greater then `max_body_size`, otherwise browsers on win32 (including chrome) failed read the http status - entity-too-large (while on linux chrome for instance are good), and also this includes badly written http clients. Refs: #321 v2: do this only under EVHTTP_SERVER_LINGERING_CLOSE | ||
| 680742e1 | 2016-02-10 14:43:18 | http: read server response even after server closed the connection Otherwise if we will try to write more data than server can accept (see `evhttp_set_max_body_size()` for libevent server) we will get `EPIPE` and will not try to read server's response which must contain 400 error for now (which is not strictly correct though, it must 413). ``` $ strace regress --no-fork http/data_length_constraints ... connect(10, {sa_family=AF_INET, sin_port=htons(43988), sin_addr=inet_addr("127.0.0.1")}, 16) = -1 EINPROGRESS (Operation now in progress) ... writev(10, [{"POST / HTTP/1.1\r\nHost: somehost\r"..., 60}, {"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"..., 16324}], 2) = 16384 epoll_wait(5, [{EPOLLOUT, {u32=10, u64=10}}, {EPOLLIN, {u32=11, u64=11}}], 32, 50000) = 2 writev(10, [{"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"..., 16384}], 1) = 16384 ioctl(11, FIONREAD, [32768]) = 0 readv(11, [{"POST / HTTP/1.1\r\nHost: somehost\r"..., 4096}], 1) = 4096 epoll_ctl(5, EPOLL_CTL_DEL, 11, 0x7fff09d41e50) = 0 epoll_ctl(5, EPOLL_CTL_ADD, 11, {EPOLLOUT, {u32=11, u64=11}}) = 0 epoll_wait(5, [{EPOLLOUT, {u32=10, u64=10}}, {EPOLLOUT, {u32=11, u64=11}}], 32, 50000) = 2 writev(10, [{"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"..., 16384}], 1) = 16384 writev(11, [{"HTTP/1.1 400 Bad Request\r\nConten"..., 129}, {"<HTML><HEAD>\n<TITLE>400 Bad Requ"..., 94}], 2) = 223 epoll_ctl(5, EPOLL_CTL_DEL, 11, 0x7fff09d42080) = 0 shutdown(11, SHUT_WR) = 0 close(11) = 0 epoll_wait(5, [{EPOLLOUT|EPOLLERR|EPOLLHUP, {u32=10, u64=10}}], 32, 50000) = 1 writev(10, [{"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"..., 16384}], 1) = -1 EPIPE (Broken pipe) --- SIGPIPE {si_signo=SIGPIPE, si_code=SI_USER, si_pid=13954, si_uid=1000} --- epoll_ctl(5, EPOLL_CTL_DEL, 10, 0x7fff09d42010) = 0 shutdown(10, SHUT_WR) = -1 ENOTCONN (Transport endpoint is not connected) close(10) = 0 write(1, "\n FAIL ../test/regress_http.c:3"..., 37 ``` Careful reader can ask why it send error even when it didn't read `evcon->max_body_size`, and the answer will be checks for `evcon->max_body_size against `Content-Length` header, which contains ~8MB (-2 bytes). And also if we will not drain the output buffer than we will send buffer that we didn't send in previous request and instead of sending method via `evhttp_make_header()`. Fixes: http/data_length_constraints Refs: #321 v2: do this only under EVHTTP_CON_READ_ON_WRITE_ERROR flag | ||
| 4dc09795 | 2016-02-15 02:59:40 | http: fix conflicts EVHTTP_CON_AUTOFREE and EVHTTP_CON_REUSE_CONNECTED_ADDR And we can't make them continuous, since the latest is a public API, and otherwise we will break binary compatibility. Also extra check for EVHTTP_CON_PUBLIC_FLAGS_END, in case somebody forgot about this (implementer I mean). Refs: #182 | ||
| bb6b53d0 | 2016-01-12 01:35:46 | visibility: align it to make it more readable | ||
| a264da86 | 2015-12-20 00:57:50 | Revert "The Windows socket type is defined as SOCKET." | ||
| c9e6c3d7 | 2015-12-16 11:17:36 | The Windows socket type is defined as SOCKET. Under the hood it's an unsigned rather than a signed type and whilst C compilers are largely happy with this C++ compilers tend to be fussy about class function signatures which makes C++ usage of libevent problematic. | ||
| 575ff678 | 2015-10-30 01:34:40 | buffer_compat: fix comment -- we have EVBUFFER_EOL_ANY not EOL_STYLE_ANY | ||
| 714fc705 | 2015-09-10 11:46:17 | http: export evhttp_connection_set_family() Fixes #176 | ||
| a50f5f0a | 2015-01-01 06:27:31 | http: reuse connected address only with EVHTTP_CON_REUSE_CONNECTED_ADDR | ||
| 8bb38425 | 2014-11-15 21:46:11 | bufferevent: move conn_address out from http into bufferevent In http the only case when when we could store it is when we already connected, *but* if we are doing request using domain name, then we need to do request to nameserver to get IP address, and this is handled by bufferevent. So when we have IP address (from nameserver) and don't have connection to this IP address, we could already cache it to avoid extra DNS requests (since UDP is slow), and we can't do this from http layer, only from bufferevent. | ||
| dc33c783 | 2014-12-02 15:05:59 | be: make @sa const for bufferevent_socket_connect() | ||
| 043ae748 | 2015-05-11 12:06:01 | Fix garbage value in socketpair util function, stdint? * Fixed an issue with evutil_ersatz_socketpair_, listen_addr could all be compared against with agarbage values. So just memset it before using it anywhere. * Nick might punch me in the face, but if we have stdint.h; (as in EVENT__HAVE_STDINT_H is defined), might as well use those instead of the manual [U]INT[X}_MAX/MIN muck in there now. | ||
| 1ed6718d | 2015-05-06 14:56:31 | expose bufferevent_incref/decref (with fewer modifications) | ||
| 1cae3ae1 | 2015-02-02 13:57:50 | Merge remote-tracking branch 'public/master' | ||
| 537177d3 | 2015-02-02 13:57:22 | New function to get address for nameserver. | ||
| 8674e4fb | 2015-01-21 11:24:23 | EVBUFFER_PTR_SET -> EVBUFFER_PTR_ADD Looks like EVBUFFER_PTR_ADD should have been used instead of EVBUFFER_PTR_SET. | ||
| f2645f80 | 2014-11-19 12:18:05 | Implement new/free for struct evutil_monotonic_timer and export monotonic time functions | ||
| 7fd49414 | 2014-11-30 19:26:20 | Merge remote-tracking branch 'origin/pr/182' | ||
| 23133cac | 2014-11-30 19:25:21 | Merge remote-tracking branch 'origin/pr/180' | ||
| 2b9ec4c1 | 2014-10-26 01:18:10 | Implement interface that provides the ability to have an outbound evhttp_connection free itself once all requests have completed | ||
| b361b8a6 | 2014-10-16 22:56:49 | remove trailing comma from enum makes being included from something with -std=c89 happy | ||
| b625361a | 2014-10-13 17:28:14 | Provide support for SO_REUSEPORT through LEV_OPT_REUSABLE_PORT | ||
| 0fb71c35 | 2014-10-09 10:14:30 | Merge remote-tracking branch 'origin/patches-2.0' | ||
| be1aeff2 | 2014-10-09 10:14:12 | Fix a typo in a doxygen comment. Reported by 亦得. | ||
| c243dbf4 | 2014-09-18 11:44:11 | Merge pull request #168 from ufo2243/master make bufferevent_getwatermark api more robust | ||
| 73615a37 | 2014-09-18 11:31:52 | Merge pull request #118 from azat/http-forward-family-to-bufferevent Add evhttp_connection_set_family() to set addrinfo->family for DNS requests | ||
| a21e5108 | 2014-09-12 11:51:59 | make bufferevent_getwatermark api more robust | ||
| 12c29b0f | 2014-03-21 17:32:09 | Add evhttp_connection_set_family() to set addrinfo->family for DNS requests This is useful if you want to avoid extra dns requests. | ||
| 58408eed | 2014-03-12 14:06:02 | Fix duplicate paragraph in evbuffer_ptr documentation | ||
| 4545fa9b | 2014-02-19 06:31:27 | Add option to build shared library | ||
| 53d27938 | 2014-01-21 15:44:05 | Expand EV_CLOSED documentation a bit | ||
| b1b69ac7 | 2014-01-17 23:20:42 | Implemented EV_CLOSED event for epoll backend (EPOLLRDHUP). - Added new EV_CLOSED event - detects premature connection close by clients without the necessity of reading all the pending data. Does not depend on EV_READ and/or EV_WRITE. - Added new EV_FEATURE_EARLY_CLOSED feature for epoll. Must be supported for listening to EV_CLOSED event. - Added new regression test: test-closed.c - All regression tests passed (test/regress and test/test.sh) - strace output of test-closed using EV_CLOSED: socketpair(PF_LOCAL, SOCK_STREAM, 0, [6, 7]) = 0 sendto(6, "test string\0", 12, 0, NULL, 0) = 12 shutdown(6, SHUT_WR) = 0 epoll_ctl(3, EPOLL_CTL_ADD, 7, {EPOLLRDHUP, {u32=7, u64=7}}) = 0 epoll_wait(3, {{EPOLLRDHUP, {u32=7, u64=7}}}, 32, 3000) = 1 epoll_ctl(3, EPOLL_CTL_MOD, 7, {EPOLLRDHUP, {u32=7, u64=7}}) = 0 fstat(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 4), ...}) mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYM... write(1, "closed_cb: detected connection close "..., 45) = 45 | ||
| 8d15f57f | 2014-01-07 16:59:26 | Merge remote-tracking branch 'asweeny86/on-complete-cb' | ||
| da86dda9 | 2014-01-06 20:36:31 | evhttp_request_set_on_complete_cb to be more specific about what the function actually does and usage | ||
| f9e091bf | 2014-01-06 12:11:30 | Merge remote-tracking branch 'asweeny86/event-count-max' | ||
| b083ca05 | 2014-01-05 20:35:46 | Provide on request complete callback facility This patch provides the ability to receive a callback on the completion of a request. The callback takes place immediately before the request's resources are released. | ||
| 5173bef5 | 2013-12-30 14:06:20 | Add access to max event count stats This commit provides an interface for accessing and resetting the maximum number of events in a given period. This information provides better insight into event queue pressure. | ||
| 471fbe3b | 2013-12-24 12:27:24 | Merge remote-tracking branch 'rbalint/from-forked-daapd' | ||
| a3172a41 | 2013-12-24 11:30:06 | Minor optimizations on bufferevent_trigger options By making BEV_TRIG_DEFER_CALLBACKS equal to BEV_OPT_DEFER_CALLBACKS, and BEV_TRIG_IGNORE_WATERMARKS disjoint from BEV_OPT_*, we can save a few operations in bufferevent_run_*, which is critical-path. | ||
| b4ef3def | 2013-12-24 10:33:58 | Merge remote-tracking branch 'mistotebe/bufferevent_trigger' | ||
| 87fa2b00 | 2013-12-23 20:46:38 | Unit tests for active_by_fd; unsupport active_by_fd(TIMEOUT) [It turns out that event_base_active_by_fd(TIMEOUT) didn't actually work right. Feel free to add it back in as a patch.] | ||
| 48659433 | 2013-12-21 23:32:10 | Add event_base_active_by_signal by analogy | ||
| 5c9da9a8 | 2013-12-21 23:21:33 | Sanity-check arguments to event_base_active_by_fd() | ||
| 93369ff4 | 2013-12-21 23:15:41 | Merge remote-tracking branch 'ghazel/event_base_active_by_fd' | ||
| db7acd13 | 2013-12-20 13:37:39 | Merge remote-tracking branch 'origin/patches-2.0' | ||
| eaa79cd4 | 2013-12-20 13:37:04 | Merge remote-tracking branch 'sourceforge/patches-2.0' into patches-2.0 Conflicts: include/event2/event.h | ||
| 8cd695bf | 2013-12-20 13:31:29 | Typo fixes from Linus Nordberg | ||
| cec62cb8 | 2013-12-20 13:31:29 | Typo fixes from Linus Nordberg | ||
| 031a8030 | 2013-12-16 12:02:21 | Clarify event_base_loop exit conditions | ||
| 45eba6ff | 2013-12-06 10:50:17 | Rename flush_outdated_host_addresses to clear_host_addresses "flush" can imply writing something out to a file or connection before clearing it; "clear" always means "remove". It's also potentially misleading to say "outdated" here, since the function removes _all_ addresses regardless, not just certain outdated ones. Also, don't free the lock in this function. Also reindent the function. | ||
| f03d3535 | 2013-12-06 17:06:20 | bug fix for issues #293 evdns_base_load_hosts doesn't remove outdated addresses As mentioned at https://sourceforge.net/p/levent/bugs/293/ created a small function "evdns_base_flush_outdated_host_addresses" which removes all the previous host addresses, if user wants to clean up the list of hosts can call and use this function. Defination of this function is part of another patch. | ||
| a7384c78 | 2013-12-03 23:01:54 | Add an option to trigger bufferevent event callbacks | ||
| 61ee18b8 | 2013-12-03 22:49:57 | Add an option to trigger bufferevent I/O callbacks | ||
| 4ce242bd | 2013-12-03 22:35:53 | Add watermark introspection | ||
| 13a9a020 | 2013-12-03 22:50:51 | Document deferred eventcb behaviour | ||
| be7bf2c7 | 2013-12-03 22:36:45 | Fix a typo | ||
| ccf432b9 | 2013-11-21 11:47:34 | Try another doxygen tweak | ||
| 6e67b510 | 2013-11-21 11:30:04 | Small doxygen tweaks | ||
| b0bd7fe1 | 2013-11-18 16:06:16 | Allow registering callback for parsing HTTP headers Slightly changed version of Espen Jürgensen's commit 548141e72312126fa6121f6a5f436đ251c7fb1251 for forked-daapd. | ||
| 8d8decf1 | 2009-05-02 20:40:11 | Add a variant of evhttp_send_reply_chunk() with a callback on evhttp_write_buffer() evhttp_write_buffer() used by evhttp_send_reply_chunk() can take callback executed when (part of) the buffer has been written. Using this callback to schedule the next chunk avoids buffering large amounts of data in memory. | ||
| 0c7f0405 | 2013-10-01 19:12:13 | http: implement new evhttp_connection_get_addr() api. Basically tcp final handshake looks like this: (C - client, S - server) ACK[C] - FIN/ACK[S] - FIN/ACK[S] - ACK [C] However there are servers, that didn't close connection like this, while it is still _considered_ as valid, and using libevent http layer we can do requests to such servers. Modified handshake: (C - client, S - server) ACK[C] - RST/ACK[S] - RST/ACK[S] And in this case we can't extract IP address from socket, because it is already closed, and getpeername() will return: "transport endpoint is not connected". So we need to store address that we are connecting to, after we know it, and that is what this patch do. I have reproduced it, however it have some extra packages. (I will try to fix it) https://github.com/azat/nfq-examples/blob/master/nfqnl_rst_fin.c | ||
| 5a5acd9a | 2013-09-28 20:03:28 | add a http default content type option | ||
| c149a1a5 | 2013-08-13 11:14:11 | Merge remote-tracking branch 'origin/patches-2.0' | ||
| d44f91ad | 2013-08-13 10:59:20 | Finish a sentence | ||
| f391b003 | 2013-08-06 17:29:34 | Merge remote-tracking branch 'origin/patches-2.0' Conflicts: arc4random.c | ||
| 2bbb5d76 | 2013-08-06 17:06:23 | Add evutil_secure_rng_set_urandom_device_file This experimental function is needed for some seccomp2 hackery to work, and should have no effect for systems that don't use it. | ||
| a7f82a31 | 2013-07-24 20:50:05 | Add evhttp_connection_get_server(). | ||
| 1c77fbb0 | 2013-07-11 16:26:43 | Pass and return const for bufferevent_get_token_bucket_cfg | ||
| 4b3d5af8 | 2013-07-11 12:31:39 | Add function to fetch underlying ratelimit cfg bufferevent_get_token_bucket_cfg() will return the struct ev_token_bucket_cfg for a bufferevent if available. | ||
| 0fa107d8 | 2013-07-02 16:01:02 | Added event_base_get_num_events() | ||
| 0b05aa65 | 2013-06-10 10:47:28 | Merge remote-tracking branch 'origin/patches-2.0' | ||
| 6e496961 | 2013-06-10 10:38:12 | Document that arc4random is not a great cryptographic PRNG. | ||
| 8415b69d | 2013-04-30 10:22:40 | Mark the finalize stuff as experiemental in case it needs to change | ||
| 920a5e69 | 2013-04-26 19:15:50 | Clarify an important point about event_base_foreach_event() | ||
| 3555befd | 2013-04-26 12:27:05 | Merge branch '21_deadlock_fix_v2' | ||
| 5d11f4f3 | 2013-04-26 11:57:40 | Make the event_finalize* functions return an error code | ||
| a800b913 | 2013-04-26 11:36:43 | More documentation for finalization feature | ||
| e9ebef83 | 2013-04-09 21:14:52 | Always run pending finalizers when event_base_free() is called There was actually a bug in the original version of this: it tried to run the finalizers after (potentially) setting current_base to NULL; but those finalizers could themselves (potentially) be invoking stuff that needed to know about the current event_base. So the right time to do it is _before_ clearing current_base. | ||
| 8eedeabe | 2013-03-28 14:13:19 | Implement event_finalize() and related functions to avoid certain deadlocks | ||
| b3aca5d9 | 2013-04-25 15:13:24 | Merge branch '21_http_error_cb_squashed' | ||
| 7b077194 | 2013-03-21 13:55:40 | Add new error_cb for actual reporting of HTTP request errors. It is useful to know why you callback called with NULL (i.e. it failed), for example if you set max_body with evhttp_connection_set_max_body_size() you must know that it failed because of body was longer than this size. (Commit message tweaked by Nick) | ||
| 6b7fa620 | 2013-03-27 20:15:46 | evdns: New flag to make evdns not prevent the event loop from exiting Here is the brief description of problem: When you are use evdns to resolve domains to IP adresses (see ./sample/dns-example) you loop never returns from event_base_dispatch(), and because of this the program will never terminated. Because existing programs may be depending on the old behavior, we only apply the fix when evdns_base_new() is created with a new flag - EVDNS_BASE_DISABLE_WHEN_INACTIVE. (Commit message edited by Nick while squashing the branch.) | ||
| cf8d1cdb | 2013-03-29 09:28:35 | Specify return behavior in header for evbuffer_pullup() in corner case Function returns NULL when told to pullup more data than exists | ||
| 1bc4a8f9 | 2013-03-25 21:14:10 | Merge remote-tracking branch 'origin/patches-2.0' | ||
| 773b0a5d | 2013-03-25 21:12:49 | Fix a typo in a comment in buffer.h. Spotted by Alt_F4 | ||
| 0c2bacca | 2013-01-17 15:01:32 | Fix typo : Dispatching instead of Dispaching | ||
| 865a1426 | 2013-01-16 16:31:08 | event_base_active_by_fd | ||
| 809586a9 | 2012-11-28 00:20:13 | minor documentation typos | ||
| dc0287c4 | 2012-11-18 19:32:41 | Clean up and clarify a little more documentation | ||
| 060c409e | 2012-11-18 19:32:11 | Make the argument to bufferevent_get_priority const | ||
| 96584866 | 2012-11-18 18:59:19 | Avoid defining recommended functions in terms of deprecated ones | ||
| e3b2e086 | 2012-11-16 16:15:03 | Add an event_remove_timer() to remove timer on an event without deleting it | ||
| 4f4d0c93 | 2012-10-10 13:16:02 | add evhttp_request_get_response_code_line This is needed to be able to read the response code line especially when acting as an http client using evhttp_make_request. (patched by nickm to make the return value const) | ||
| c181399e | 2012-11-16 10:53:52 | Merge remote-tracking branch 'azat/fix-typo-evets' | ||
| 3f27db9d | 2012-11-16 07:42:17 | Merge pull request #27 from pallas/master Fix event_dlist definition when sys/queue not included | ||
| c17dd591 | 2011-07-15 11:10:54 | Free dangling event_once objects on event_base_free() This patch makes us keep event_once objects in a doubly linked list so we can free any once that haven't triggered when we call event_base_free(). | ||
| 81b6209e | 2012-11-10 11:22:15 | Fix event_dlist definition when sys/queue not included This header adds TAILQ_HEAD and TAILQ_ENTRY if sys/queue is not included. There is a similar macro that adds LIST_ENTRY but not LIST_HEAD, even though LIST_HEAD is used later. This change pulls in the correct definition (swiped from sys/queue) for LIST_HEAD and cleans up the one spot where it is used. The change can be tested by adding #undef LIST_HEAD #undef LIST_ENTRY right before the #ifndef checks and removing #define EVENT_DEFINED_LISTENTRY_ #define EVENT_DEFINED_LISTHEAD_ so that the macros persist later. | ||
| e9f8feba | 2012-11-06 17:37:28 | Add a new callback to get called on evbuffer_file_segment free | ||
| 05f1aca5 | 2012-09-18 15:17:29 | Fix typo : events instead of evets |