Home
last modified time | relevance | path

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

/external/libevent/include/event2/
Dhttp.h70 struct evhttp;
85 struct evhttp *evhttp_new(struct event_base *base);
100 int evhttp_bind_socket(struct evhttp *http, const char *address, ev_uint16_t port);
114 struct evhttp_bound_socket *evhttp_bind_socket_with_handle(struct evhttp *http, const char *address…
133 int evhttp_accept_socket(struct evhttp *http, evutil_socket_t fd);
146 struct evhttp_bound_socket *evhttp_accept_socket_with_handle(struct evhttp *http, evutil_socket_t f…
154 struct evhttp_bound_socket *evhttp_bind_listener(struct evhttp *http, struct evconnlistener *listen…
174 void evhttp_foreach_bound_socket(struct evhttp *http, evhttp_bound_socket_foreach_fn *function, voi…
194 void evhttp_del_accept_socket(struct evhttp *http, struct evhttp_bound_socket *bound_socket);
215 void evhttp_free(struct evhttp* http);
[all …]
Dhttp_compat.h61 struct evhttp *evhttp_start(const char *address, ev_uint16_t port);
Drpc.h281 struct evhttp;
291 struct evrpc_base *evrpc_init(struct evhttp *server);
/external/libevent/
Dhttp-internal.h93 struct evhttp *http_server;
137 struct evhttp { struct
139 TAILQ_ENTRY(evhttp) next_vhost;
149 TAILQ_HEAD(vhostsq, evhttp) virtualhosts; argument
Dhttp.c190 static void evhttp_get_request(struct evhttp *, evutil_socket_t, struct sockaddr *, ev_socklen_t);
199 static int evhttp_find_vhost(struct evhttp *http, struct evhttp **outhttp,
1222 struct evhttp *http = evcon->http_server; in evhttp_connection_free()
2407 struct evhttp *
3344 evhttp_find_alias(struct evhttp *http, struct evhttp **outhttp, in evhttp_find_alias()
3348 struct evhttp *vhost; in evhttp_find_alias()
3381 evhttp_find_vhost(struct evhttp *http, struct evhttp **outhttp, in evhttp_find_vhost()
3384 struct evhttp *vhost; in evhttp_find_vhost()
3385 struct evhttp *oldhttp; in evhttp_find_vhost()
3412 struct evhttp *http = arg; in evhttp_handle_request()
[all …]
Devrpc-internal.h76 struct evhttp* http_server;
DChangeLog171 o evhttp: Fix failure to send all output data for POST/PUT requests (24eea0d John Ohl)
211 o test/http: localize evhttp server structure (cbc3209 Azat Khuzhin)
475 New APIs (evhttp)
492 Bugfixes (evhttp)
552 evhttp callbacks, and more. There are also numerous bugfixes, including
581 New APIs (evhttp)
679 Bugfixes (evhttp)
680 o Fix a double close() bug in evhttp when the underlying bufferevent uses
803 up the code in a couple of places. It has a new callback in evhttp for
837 Bugfixes (evhttp, crash fix, from 2.0)
[all …]
DMakefile.am292 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
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-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.
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.in520 include/evhttp.h include/evrpc.h include/evutil.h
563 include/event.h include/evhttp.h include/evrpc.h \
1241 include/evhttp.h \
/external/libevent/test/
Dregress_rpc.c76 static struct evhttp *
79 struct evhttp *myhttp; in http_setup()
138 rpc_setup(struct evhttp **phttp, ev_uint16_t *pport, struct evrpc_base **pbase) in rpc_setup()
141 struct evhttp *http = NULL; in rpc_setup()
188 struct evhttp *http = NULL; in rpc_basic_test()
257 struct evhttp *http = NULL; in rpc_basic_message()
449 struct evhttp *http = NULL; in rpc_basic_client()
535 struct evhttp *http = NULL; in rpc_basic_queued_client()
635 struct evhttp *http = NULL; in rpc_basic_client_with_pause()
687 struct evhttp *http = NULL; in rpc_client_timeout()
Dregress_http.c90 http_bind(struct evhttp *myhttp, ev_uint16_t *pport, int mask) in http_bind()
130 static struct evhttp *
133 struct evhttp *myhttp; in http_setup()
464 struct evhttp *http = http_setup(&port, data->base, server_flags); in http_basic_test_impl()
647 struct evhttp *http = http_setup(&port, data->base, 0); in http_bad_request_test()
768 struct evhttp *http = http_setup(&port, data->base, 0); in http_delete_test()
852 struct evhttp *http = http_setup(&port, data->base, 0); in http_on_complete_test()
913 struct evhttp *http = http_setup(&port, data->base, 0); in http_allowed_methods_test()
1021 struct evhttp *http; in http_connection_test_()
1150 struct evhttp *http = http_setup(&port, data->base, 0); in http_connection_async_test()
[all …]
Dbench_http.c89 struct evhttp *http; in main()
/external/libevent/sample/
Dhttp-server.c333 struct evhttp *http; in main()