Home
last modified time | relevance | path

Searched refs:evhttp (Results 1 – 19 of 19) sorted by relevance

/external/libevent/include/event2/
Dhttp.h70 struct evhttp;
86 struct evhttp *evhttp_new(struct event_base *base);
101 int evhttp_bind_socket(struct evhttp *http, const char *address, ev_uint16_t port);
115 struct evhttp_bound_socket *evhttp_bind_socket_with_handle(struct evhttp *http, const char *address…
134 int evhttp_accept_socket(struct evhttp *http, evutil_socket_t fd);
147 struct evhttp_bound_socket *evhttp_accept_socket_with_handle(struct evhttp *http, evutil_socket_t f…
155 struct evhttp_bound_socket *evhttp_bind_listener(struct evhttp *http, struct evconnlistener *listen…
175 void evhttp_foreach_bound_socket(struct evhttp *http, evhttp_bound_socket_foreach_fn *function, voi…
195 void evhttp_del_accept_socket(struct evhttp *http, struct evhttp_bound_socket *bound_socket);
216 void evhttp_free(struct evhttp* http);
[all …]
Dhttp_compat.h63 struct evhttp *evhttp_start(const char *address, ev_uint16_t port);
Drpc.h290 struct evhttp;
301 struct evrpc_base *evrpc_init(struct evhttp *server);
/external/libevent/
Dhttp-internal.h90 struct evhttp *http_server;
134 struct evhttp { struct
136 TAILQ_ENTRY(evhttp) next_vhost;
146 TAILQ_HEAD(vhostsq, evhttp) virtualhosts; argument
Dhttp.c198 static void evhttp_get_request(struct evhttp *, evutil_socket_t, struct sockaddr *, ev_socklen_t);
207 static int evhttp_find_vhost(struct evhttp *http, struct evhttp **outhttp,
1242 struct evhttp *http = evcon->http_server; in evhttp_connection_free()
2448 struct evhttp *
3399 evhttp_find_alias(struct evhttp *http, struct evhttp **outhttp, in evhttp_find_alias()
3403 struct evhttp *vhost; in evhttp_find_alias()
3436 evhttp_find_vhost(struct evhttp *http, struct evhttp **outhttp, in evhttp_find_vhost()
3439 struct evhttp *vhost; in evhttp_find_vhost()
3440 struct evhttp *oldhttp; in evhttp_find_vhost()
3467 struct evhttp *http = arg; in evhttp_handle_request()
[all …]
Devrpc-internal.h76 struct evhttp* http_server;
DChangeLog484 o evhttp: Fix failure to send all output data for POST/PUT requests (24eea0d John Ohl)
524 o test/http: localize evhttp server structure (cbc3209 Azat Khuzhin)
788 New APIs (evhttp)
805 Bugfixes (evhttp)
865 evhttp callbacks, and more. There are also numerous bugfixes, including
894 New APIs (evhttp)
992 Bugfixes (evhttp)
993 o Fix a double close() bug in evhttp when the underlying bufferevent uses
1116 up the code in a couple of places. It has a new callback in evhttp for
1150 Bugfixes (evhttp, crash fix, from 2.0)
[all …]
DMakefile.am329 include/evhttp.h \
Dwhatsnew-2.1.txt404 1.9. New functions and features: evhttp
407 NOTE: The evhttp module will eventually be deprecated in favor of Mark
409 libevhtp provides every feature that evhttp does, and provides a
413 Previously, you could only set evhttp timeouts in increments of one
428 every listener on an evhttp object.
441 You can navigate from an evhttp_connection back to its evhttp with the
DChangeLog-1.473 …o Allow setting of local port for evhttp connections to support millions of connections from a sin…
167 o small improvements to evhttp documentation
216 o Fix evhttp.h compilation when TAILQ_ENTRY is not defined.
Dwhatsnew-2.0.txt74 All of the old headers (event.h, evdns.h, evhttp.h, evrpc.h, and
576 The evhttp uriencoding and uridecoding APIs have updated versions
579 The evhttp query parsing and URI parsing logic can now detect errors
591 Numerous evhttp bugs also got fixed.
DChangeLog-2.022 o evhttp: Fix a memory leak on error in evhttp_uriencode (11c8b31)
25 o evhttp: Check more setsockopt return values when binding sockets. Found by coverity (a0912e3)
122 BUGFIXES (evhttp):
435 …o Add evhttp server alias interface, correct flagging of proxy requests. (aab8c38 Christopher Davi…
439 o Fix Content-Length when trying send more than 100GB of data (!) on an evhttp. (525da3e)
446 o evhttp: Return 501 when we get an unrecognized method, not 400. (536311a)
451 o Preliminary support for Continue expectation in evhttp. (fa9305f Christopher Davis)
499 o Units test for unexpected evhttp methods. (75e3320)
1039 …o New functions to explicitly reference a socket used by an evhttp object. Patches from David Reis…
1148 o small improvements to evhttp documentation
[all …]
Devrpc.c72 evrpc_init(struct evhttp *http_server) in evrpc_init()
DMakefile.in596 include/evhttp.h include/evrpc.h include/evutil.h
638 include/evdns.h include/event.h include/evhttp.h \
1372 include/evhttp.h \
DCMakeLists.txt771 include/evhttp.h
/external/libevent/test/
Dregress_rpc.c75 static struct evhttp *
78 struct evhttp *myhttp; in http_setup()
137 rpc_setup(struct evhttp **phttp, ev_uint16_t *pport, struct evrpc_base **pbase) in rpc_setup()
140 struct evhttp *http = NULL; in rpc_setup()
187 struct evhttp *http = NULL; in rpc_basic_test()
256 struct evhttp *http = NULL; in rpc_basic_message()
448 struct evhttp *http = NULL; in rpc_basic_client()
534 struct evhttp *http = NULL; in rpc_basic_queued_client()
634 struct evhttp *http = NULL; in rpc_basic_client_with_pause()
686 struct evhttp *http = NULL; in rpc_client_timeout()
[all …]
Dregress_http.c93 http_bind(struct evhttp *myhttp, ev_uint16_t *pport, int mask) in http_bind()
133 static struct evhttp *
137 struct evhttp *myhttp; in http_setup_gencb()
170 static struct evhttp *
515 struct evhttp *http = http_setup(&port, data->base, server_flags); in http_basic_test_impl()
692 struct evhttp *http = http_setup(&port, data->base, 0); in http_bad_request_test()
814 struct evhttp *http = http_setup(&port, data->base, 0); in http_delete_test()
898 struct evhttp *http = http_setup(&port, data->base, 0); in http_on_complete_test()
959 struct evhttp *http = http_setup(&port, data->base, 0); in http_allowed_methods_test()
1067 struct evhttp *http; in http_connection_test_()
[all …]
Dbench_http.c89 struct evhttp *http; in main()
/external/libevent/sample/
Dhttp-server.c450 struct evhttp *http = NULL; in main()