HomeSort by relevance Sort by last modified time
    Searched refs:evhttp (Results 1 - 11 of 11) sorted by null

  /external/libevent/include/event2/
http.h 70 struct evhttp;
81 * @return a pointer to a newly initialized evhttp server structure
85 struct evhttp *evhttp_new(struct event_base *base);
93 * @param http a pointer to an evhttp object
100 int evhttp_bind_socket(struct evhttp *http, const char *address, ev_uint16_t port);
107 * @param http a pointer to an evhttp object
114 struct evhttp_bound_socket *evhttp_bind_socket_with_handle(struct evhttp *http, const char *address, ev_uint16_t port);
127 * @param http a pointer to an evhttp object
133 int evhttp_accept_socket(struct evhttp *http, evutil_socket_t fd);
140 * @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, ev_uint16_t port);
rpc.h 281 struct evhttp;
291 struct evrpc_base *evrpc_init(struct evhttp *server);
  /external/libevent/
http-internal.h 93 struct evhttp *http_server;
137 struct evhttp { struct
139 TAILQ_ENTRY(evhttp) next_vhost;
149 TAILQ_HEAD(vhostsq, evhttp) virtualhosts;
http.c 190 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,
    [all...]
evrpc-internal.h 76 struct evhttp* http_server;
evrpc.c 72 evrpc_init(struct evhttp *http_server)
  /external/libevent/test/
regress_rpc.c 76 static struct evhttp *
79 struct evhttp *myhttp;
138 rpc_setup(struct evhttp **phttp, ev_uint16_t *pport, struct evrpc_base **pbase)
141 struct evhttp *http = NULL;
188 struct evhttp *http = NULL;
257 struct evhttp *http = NULL;
449 struct evhttp *http = NULL;
535 struct evhttp *http = NULL;
635 struct evhttp *http = NULL;
687 struct evhttp *http = NULL
    [all...]
regress_http.c 90 http_bind(struct evhttp *myhttp, ev_uint16_t *pport, int mask)
130 static struct evhttp *
133 struct evhttp *myhttp;
464 struct evhttp *http = http_setup(&port, data->base, server_flags);
647 struct evhttp *http = http_setup(&port, data->base, 0);
768 struct evhttp *http = http_setup(&port, data->base, 0);
852 struct evhttp *http = http_setup(&port, data->base, 0);
913 struct evhttp *http = http_setup(&port, data->base, 0);
1021 struct evhttp *http;
1150 struct evhttp *http = http_setup(&port, data->base, 0)
    [all...]
bench_http.c 89 struct evhttp *http;
  /external/libevent/sample/
http-server.c 2 A trivial static http webserver using Libevent's evhttp.
155 * any other callback. Like any evhttp server callback, it has a simple job:
333 struct evhttp *http;
355 /* Create a new evhttp object to handle requests. */
358 fprintf(stderr, "couldn't create evhttp. Exiting.\n");
369 /* Now we tell the evhttp what port to listen on */

Completed in 795 milliseconds