2
0
Fork 0
lighttpd2/include/lighttpd/connection.h

92 lines
2.0 KiB
C
Raw Normal View History

#ifndef _LIGHTTPD_CONNECTION_H_
#define _LIGHTTPD_CONNECTION_H_
#ifndef _LIGHTTPD_BASE_H_
#error Please include <lighttpd/base.h> instead of this file
#endif
2008-08-05 15:08:32 +00:00
typedef enum {
/** unused */
CON_STATE_DEAD,
/** waiting for new input after first request */
CON_STATE_KEEP_ALIVE,
/** after the connect, the request is initialized */
2008-08-06 18:46:42 +00:00
CON_STATE_REQUEST_START,
/** loop in the read-request-header until the full header is received */
CON_STATE_READ_REQUEST_HEADER,
/** handle in main virtual request */
CON_STATE_HANDLE_MAINVR,
/** write remaining bytes from raw_out, mainvr finished (or not started) */
CON_STATE_WRITE,
2008-08-05 15:08:32 +00:00
} connection_state_t;
struct connection {
2008-08-05 15:08:32 +00:00
guint idx; /** index in connection table */
server *srv;
worker *wrk;
2008-08-05 15:08:32 +00:00
connection_state_t state;
2008-08-06 23:44:09 +00:00
gboolean response_headers_sent, expect_100_cont;
2008-08-05 15:08:32 +00:00
chunkqueue *raw_in, *raw_out;
chunkqueue *in, *out; /* link to mainvr->in/out */
ev_io sock_watcher;
2008-07-25 22:42:08 +00:00
sock_addr remote_addr, local_addr;
GString *remote_addr_str, *local_addr_str;
2008-08-06 18:46:42 +00:00
gboolean is_ssl, keep_alive;
vrequest *mainvr;
http_request_ctx req_parser_ctx;
2008-08-06 18:46:42 +00:00
/* Keep alive timeout data */
struct {
GList *link;
ev_tstamp timeout;
2008-08-17 19:27:09 +00:00
guint max_idle;
ev_timer watcher;
} keep_alive_data;
guint keep_alive_requests;
2008-11-10 14:39:03 +00:00
/* I/O timeout data */
waitqueue_elem io_timeout_elem;
2008-11-10 14:39:03 +00:00
/* I/O throttling */
struct {
waitqueue_elem queue_elem;
guint magazine;
ev_tstamp ts;
} throttle;
ev_tstamp ts;
struct {
guint64 bytes_in;
guint64 bytes_out;
ev_tstamp last_avg;
guint64 bytes_in_5s;
guint64 bytes_out_5s;
guint64 bytes_in_5s_diff;
guint64 bytes_out_5s_diff;
} stats;
};
LI_API connection* connection_new(worker *wrk);
LI_API void connection_reset(connection *con);
LI_API void connection_reset_keep_alive(connection *con);
LI_API void connection_free(connection *con);
2008-08-05 15:08:32 +00:00
LI_API void connection_error(connection *con);
2008-08-06 18:46:42 +00:00
LI_API void connection_handle_direct(connection *con);
LI_API void connection_handle_indirect(connection *con, plugin *p);
2008-08-05 15:08:32 +00:00
LI_API gchar *connection_state_str(connection_state_t state);
#endif