lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1018 B
24 lines
1018 B
#ifndef _CONNECTIONS_H_ |
|
#define _CONNECTIONS_H_ |
|
#include "first.h" |
|
|
|
#include "server.h" |
|
#include "fdevent.h" |
|
|
|
connection *connection_init(server *srv); |
|
int connection_reset(server *srv, connection *con); |
|
void connections_free(server *srv); |
|
|
|
connection * connection_accept(server *srv, server_socket *srv_sock); |
|
connection * connection_accepted(server *srv, server_socket *srv_socket, sock_addr *cnt_addr, int cnt); |
|
|
|
int connection_set_state(server *srv, connection *con, connection_state_t state); |
|
const char * connection_get_state(connection_state_t state); |
|
const char * connection_get_short_state(connection_state_t state); |
|
int connection_state_machine(server *srv, connection *con); |
|
handler_t connection_handle_read_post_state(server *srv, connection *con); |
|
handler_t connection_handle_read_post_error(server *srv, connection *con, int http_status); |
|
int connection_write_chunkqueue(server *srv, connection *con, chunkqueue *c, off_t max_bytes); |
|
void connection_response_reset(server *srv, connection *con); |
|
|
|
#endif
|
|
|