| /libevent-2.1.12/include/event2/ |
| H A D | dns_compat.h | 199 int evdns_resolve_ipv4(const char *name, int flags, evdns_callback_type callback, void *ptr); 212 int evdns_resolve_ipv6(const char *name, int flags, evdns_callback_type callback, void *ptr); 232 int evdns_resolve_reverse(const struct in_addr *in, int flags, evdns_callback_type callback, void *… 249 int evdns_resolve_reverse_ipv6(const struct in6_addr *in, int flags, evdns_callback_type callback, … 346 evdns_request_callback_fn_type callback, void *user_data);
|
| H A D | dns.h | 394 …pv4(struct evdns_base *base, const char *name, int flags, evdns_callback_type callback, void *ptr); 408 …pv6(struct evdns_base *base, const char *name, int flags, evdns_callback_type callback, void *ptr); 425 …ct evdns_base *base, const struct in_addr *in, int flags, evdns_callback_type callback, void *ptr); 440 …t evdns_base *base, const struct in6_addr *in, int flags, evdns_callback_type callback, void *ptr); 655 …base, evutil_socket_t socket, int flags, evdns_request_callback_fn_type callback, void *user_data);
|
| H A D | rpc.h | 330 #define EVRPC_REGISTER(base, name, request, reply, callback, cbarg) \ argument 332 (void (*)(struct evrpc_req_generic *, void *))callback, cbarg, \ 604 void (*callback)(struct evrpc_req_generic *, void *), void *cbarg,
|
| /libevent-2.1.12/ |
| H A D | whatsnew-2.1.txt | 110 event_assign(&ev, base, fd, EV_READ, callback, &ev); 115 callback argument: 118 evp = event_new(base, fd, EV_READ, callback, 142 user-supplied callback on each. The callback must not alter the events 189 callback (if the callback hadn't started running yet), or has waited 190 for the callback to finish. 205 callback to finish. But meanwhile, the callback will be waiting for 257 callback has been invoked. 335 callback. 434 callback. [all …]
|
| H A D | evdns.c | 2782 const char *name, int flags, evdns_callback_type callback, in request_new() argument 2842 req->user_callback = callback; in request_new() 2916 evdns_callback_type callback, void *ptr) { in evdns_base_resolve_ipv4() argument 2927 callback, ptr); in evdns_base_resolve_ipv4() 2932 callback, ptr); in evdns_base_resolve_ipv4() 2943 evdns_callback_type callback, void *ptr) in evdns_resolve_ipv4() argument 2954 evdns_callback_type callback, void *ptr) in evdns_base_resolve_ipv6() argument 2965 callback, ptr); in evdns_base_resolve_ipv6() 2970 callback, ptr); in evdns_base_resolve_ipv6() 2981 evdns_callback_type callback, void *ptr) { in evdns_resolve_ipv6() argument [all …]
|
| H A D | event.c | 2043 void (*callback)(evutil_socket_t, short, void *), in event_once() 2046 return event_base_once(current_base, fd, events, callback, arg, tv); in event_once() 2052 void (*callback)(evutil_socket_t, short, void *), in event_base_once() 2070 eonce->cb = callback; in event_base_once() 2113 … *ev, struct event_base *base, evutil_socket_t fd, short events, void (*callback)(evutil_socket_t,… in event_assign() 2126 ev->ev_callback = callback; in event_assign() 2180 void (*callback)(evutil_socket_t, short, void *), void *arg) in event_set() 2183 r = event_assign(ev, current_base, fd, events, callback, arg); in event_set()
|
| H A D | whatsnew-2.0.txt | 203 The callback 'cb' will be invoked whenever fd is ready to read, OR whenever 398 Previously, you could only have one callback active on an evbuffer at a 400 evbuffer callback to notice when an internal evbuffer was reading or 401 writing data, you couldn't have your own callback on that evbuffer. 403 Now, you can now use the evbuffer_add_cb() function to add a callback that 408 4.6. New callback interface
|
| H A D | ChangeLog | 899 o Add a variant of evhttp_send_reply_chunk() with a callback on 905 o Update unit test to make sure that the callback happens after the 1116 up the code in a couple of places. It has a new callback in evhttp for 1164 o Avoid leaking fds on evconnlistener with no callback set (69db261) 1288 o Add a new callback to get called on evbuffer_file_segment free 1334 If a callback added by event_base_once() is never invoked, Libevent no 1366 logic (introduced in 2.0 to avoid callback recursion), Libevent now 1371 o Refactor the callback part of an event into its own event_callback 1404 o Avoid leaking fds on evconnlistener with no callback set (69db261) 1851 callback (36d0ee5 Patrick Pelletier) [all …]
|
| H A D | ChangeLog-2.0 | 190 …o When a signal callback is activated to run multiple times, allow event_base_loopbreak to work ev… 406 o Add a function to change a listener's callback. (46ee061) 418 o Avoid double-invocation of user callback with EVUTIL_EAI_CANCEL (abf01ed) 462 o Don't free evdns_request handles until after the callback is invoked (9ed30de) 525 o Add error callback to evconnlistener (c4be8d8 Simon Perreault) 672 o Test the unlocked-deferred callback case of bufferevents (dfb75ab) 961 o When connect() succeeds immediately, don't invoke the callback immediately. (7515de9) 1110 o Change the interface of evbuffer_add_reference so that the cleanup callback gets more information 1125 …o Do not allow event_del(ev) to return while that event's callback is executing in another thread.… 1164 o allow an http request callback to take ownership of a request structure [all …]
|
| H A D | evrpc.c | 1133 void (*callback)(struct evrpc_req_generic *, void *), void *cbarg, in evrpc_register_generic() 1146 (void (*)(struct evrpc_req_generic*, void *))callback, cbarg); in evrpc_register_generic()
|
| H A D | ChangeLog-1.4 | 63 o fix signal processing when a signal callback delivers a signal; from Alexander Drozdov
|