Fixed gtest exclude for PixelResourceTest on DrMemory.
[chromium-blink-merge.git] / third_party / libevent / http-internal.h
blob9cd03cdd2bc1d50b4fe7fcbdab9c251e32328be3
1 /*
2 * Copyright 2001 Niels Provos <provos@citi.umich.edu>
3 * All rights reserved.
5 * This header file contains definitions for dealing with HTTP requests
6 * that are internal to libevent. As user of the library, you should not
7 * need to know about these.
8 */
10 #ifndef _HTTP_H_
11 #define _HTTP_H_
13 #define HTTP_CONNECT_TIMEOUT 45
14 #define HTTP_WRITE_TIMEOUT 50
15 #define HTTP_READ_TIMEOUT 50
17 #define HTTP_PREFIX "http://"
18 #define HTTP_DEFAULTPORT 80
20 enum message_read_status {
21 ALL_DATA_READ = 1,
22 MORE_DATA_EXPECTED = 0,
23 DATA_CORRUPTED = -1,
24 REQUEST_CANCELED = -2
27 enum evhttp_connection_error {
28 EVCON_HTTP_TIMEOUT,
29 EVCON_HTTP_EOF,
30 EVCON_HTTP_INVALID_HEADER
33 struct evbuffer;
34 struct addrinfo;
35 struct evhttp_request;
37 /* A stupid connection object - maybe make this a bufferevent later */
39 enum evhttp_connection_state {
40 EVCON_DISCONNECTED, /**< not currently connected not trying either*/
41 EVCON_CONNECTING, /**< tries to currently connect */
42 EVCON_IDLE, /**< connection is established */
43 EVCON_READING_FIRSTLINE,/**< reading Request-Line (incoming conn) or
44 **< Status-Line (outgoing conn) */
45 EVCON_READING_HEADERS, /**< reading request/response headers */
46 EVCON_READING_BODY, /**< reading request/response body */
47 EVCON_READING_TRAILER, /**< reading request/response chunked trailer */
48 EVCON_WRITING /**< writing request/response headers/body */
51 struct event_base;
53 struct evhttp_connection {
54 /* we use tailq only if they were created for an http server */
55 TAILQ_ENTRY(evhttp_connection) (next);
57 int fd;
58 struct event ev;
59 struct event close_ev;
60 struct evbuffer *input_buffer;
61 struct evbuffer *output_buffer;
63 char *bind_address; /* address to use for binding the src */
64 u_short bind_port; /* local port for binding the src */
66 char *address; /* address to connect to */
67 u_short port;
69 int flags;
70 #define EVHTTP_CON_INCOMING 0x0001 /* only one request on it ever */
71 #define EVHTTP_CON_OUTGOING 0x0002 /* multiple requests possible */
72 #define EVHTTP_CON_CLOSEDETECT 0x0004 /* detecting if persistent close */
74 int timeout; /* timeout in seconds for events */
75 int retry_cnt; /* retry count */
76 int retry_max; /* maximum number of retries */
78 enum evhttp_connection_state state;
80 /* for server connections, the http server they are connected with */
81 struct evhttp *http_server;
83 TAILQ_HEAD(evcon_requestq, evhttp_request) requests;
85 void (*cb)(struct evhttp_connection *, void *);
86 void *cb_arg;
88 void (*closecb)(struct evhttp_connection *, void *);
89 void *closecb_arg;
91 struct event_base *base;
94 struct evhttp_cb {
95 TAILQ_ENTRY(evhttp_cb) next;
97 char *what;
99 void (*cb)(struct evhttp_request *req, void *);
100 void *cbarg;
103 /* both the http server as well as the rpc system need to queue connections */
104 TAILQ_HEAD(evconq, evhttp_connection);
106 /* each bound socket is stored in one of these */
107 struct evhttp_bound_socket {
108 TAILQ_ENTRY(evhttp_bound_socket) (next);
110 struct event bind_ev;
113 struct evhttp {
114 TAILQ_HEAD(boundq, evhttp_bound_socket) sockets;
116 TAILQ_HEAD(httpcbq, evhttp_cb) callbacks;
117 struct evconq connections;
119 int timeout;
121 void (*gencb)(struct evhttp_request *req, void *);
122 void *gencbarg;
124 struct event_base *base;
127 /* resets the connection; can be reused for more requests */
128 void evhttp_connection_reset(struct evhttp_connection *);
130 /* connects if necessary */
131 int evhttp_connection_connect(struct evhttp_connection *);
133 /* notifies the current request that it failed; resets connection */
134 void evhttp_connection_fail(struct evhttp_connection *,
135 enum evhttp_connection_error error);
137 void evhttp_get_request(struct evhttp *, int, struct sockaddr *, socklen_t);
139 int evhttp_hostportfile(char *, char **, u_short *, char **);
141 int evhttp_parse_firstline(struct evhttp_request *, struct evbuffer*);
142 int evhttp_parse_headers(struct evhttp_request *, struct evbuffer*);
144 void evhttp_start_read(struct evhttp_connection *);
145 void evhttp_make_header(struct evhttp_connection *, struct evhttp_request *);
147 void evhttp_write_buffer(struct evhttp_connection *,
148 void (*)(struct evhttp_connection *, void *), void *);
150 /* response sending HTML the data in the buffer */
151 void evhttp_response_code(struct evhttp_request *, int, const char *);
152 void evhttp_send_page(struct evhttp_request *, struct evbuffer *);
154 #endif /* _HTTP_H */