OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:evhttp
(Results
1 - 14
of
14
) sorted by null
/external/libevent/include/event2/
http.h
67
struct
evhttp
;
77
* @return a pointer to a newly initialized
evhttp
server structure
80
struct
evhttp
*evhttp_new(struct event_base *base);
88
* @param http a pointer to an
evhttp
object
94
int evhttp_bind_socket(struct
evhttp
*http, const char *address, ev_uint16_t port);
101
* @param http a pointer to an
evhttp
object
107
struct evhttp_bound_socket *evhttp_bind_socket_with_handle(struct
evhttp
*http, const char *address, ev_uint16_t port);
120
* @param http a pointer to an
evhttp
object
125
int evhttp_accept_socket(struct
evhttp
*http, evutil_socket_t fd);
132
* @param http a pointer to an
evhttp
objec
[
all
...]
http_compat.h
59
* @return an struct
evhttp
object
61
struct
evhttp
*evhttp_start(const char *address, unsigned short port);
http_struct.h
70
/** The request obj owns the
evhttp
connection and needs to free it */
rpc.h
281
struct
evhttp
;
291
struct evrpc_base *evrpc_init(struct
evhttp
*server);
event.h
137
@section
evhttp
Event-driven HTTP servers
[
all
...]
/external/libevent/
http-internal.h
93
struct
evhttp
*http_server;
136
struct
evhttp
{
struct
138
TAILQ_ENTRY(
evhttp
) next_vhost;
148
TAILQ_HEAD(vhostsq,
evhttp
) virtualhosts;
evhttp.h
30
/** @file
evhttp
.h
34
The <
evhttp
.h> header is deprecated in Libevent 2.0 and later; please
http.c
187
static void evhttp_get_request(struct
evhttp
*, evutil_socket_t, struct sockaddr *, ev_socklen_t);
198
static int evhttp_find_vhost(struct
evhttp
*http, struct
evhttp
**outhttp,
1146
struct
evhttp
*http = evcon->http_server;
[
all
...]
evrpc-internal.h
75
struct
evhttp
* http_server;
ChangeLog
6
BUGFIXES (
evhttp
)
86
o
evhttp
: Fix a memory leak on error in evhttp_uriencode (11c8b31)
89
o
evhttp
: Check more setsockopt return values when binding sockets. Found by coverity (a0912e3)
186
BUGFIXES (
evhttp
):
499
o Add
evhttp
server alias interface, correct flagging of proxy requests. (aab8c38 Christopher Davis)
503
o Fix Content-Length when trying send more than 100GB of data (!) on an
evhttp
. (525da3e)
510
o
evhttp
: Return 501 when we get an unrecognized method, not 400. (536311a)
515
o Preliminary support for Continue expectation in
evhttp
. (fa9305f Christopher Davis)
563
o Units test for unexpected
evhttp
methods. (75e3320)
[
all
...]
whatsnew-2.0.txt
74
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.
Makefile.am
227
EVENT1_HDRS = event.h
evhttp
.h evdns.h evrpc.h evutil.h
Makefile.in
249
am__include_HEADERS_DIST = event.h
evhttp
.h evdns.h evrpc.h evutil.h
258
compat/sys/queue.h event.h
evhttp
.h evdns.h evrpc.h evutil.h
590
EVENT1_HDRS = event.h
evhttp
.h evdns.h evrpc.h evutil.h
[
all
...]
evrpc.c
71
evrpc_init(struct
evhttp
*http_server)
Completed in 271 milliseconds