Branch :
| Author | Commit | Date | CI | Message |
|---|---|---|---|---|
| 3c1f58f5 | 2015-11-05 17:45:09 | be: introduce bufferevent_generic_adj_existing_timeouts_() And use it in openssl/sock layers to avoid copy-pasting it's variants. | ||
| b2c68bc2 | 2015-08-26 09:45:23 | Add missing include of <netinet/in.h>. POSIX states that sockaddr_in6 should be declared in <netinet/in.h>. By including this header, the code now builds on FreeBSD and CloudABI. | ||
| c2122919 | 2015-08-19 23:27:51 | be: include all variations of headers for sockaddr_in6 struct Fixes: c42bc6b279fd7cd4bc9b04c86a12e2ec5512cce1 ("be: fix sockaddr_in6 type definition for win32") Fixes: e04555155816306f23829a15b747664a57330c28 ("Merge branch 'reuse-conn_address-on-retry-v11'") CI: https://ci.appveyor.com/project/nmathewson/libevent/build/2.1.5.109 Tested: manually | ||
| c42bc6b2 | 2015-08-19 22:52:22 | be: fix sockaddr_in6 type definition for win32 bufferevent-internal.h:217:23: error: field 'in6' has incomplete type struct sockaddr_in6 in6; ^ CI: https://ci.appveyor.com/project/nmathewson/libevent/build/2.1.5.108 | ||
| 38896124 | 2014-12-02 14:24:19 | be: replace sockaddr_storage with sockaddr_in6 for conn_address We need only ipv6/ipv4 for connect in bufferevent, and since sockaddr_storage is pretty big (128 bytes) it will be better to use sockaddr_in6 here (it will fit ipv4 too). | ||
| e5615aa7 | 2014-11-16 00:29:19 | be: replace conn_address by full struct instead of pointer | ||
| 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. | ||
| 1ed6718d | 2015-05-06 14:56:31 | expose bufferevent_incref/decref (with fewer modifications) | ||
| 4c8ebcd3 | 2013-12-24 15:02:02 | Remove unneeded declaration in bufferevent-internal.h | ||
| 4dd3abd4 | 2013-12-24 11:20:52 | Make bufferevent_trigger_nolock_() inline Since most of its callers are using constant EV_READ or EV_WRITE, and using constant 0 as its argument, this should eliminate most of the overhead for this function in the fast case. |