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.
27 lines
747 B
27 lines
747 B
#ifndef _CONNECTIONS_H_ |
|
#define _CONNECTIONS_H_ |
|
#include "first.h" |
|
|
|
#include "base_decls.h" |
|
|
|
struct server_socket; /* declaration */ |
|
|
|
__attribute_cold__ |
|
void connections_free(server *srv); |
|
|
|
__attribute_cold__ |
|
void connection_graceful_shutdown_maint (server *srv); |
|
|
|
void connection_periodic_maint (server *srv, time_t cur_ts); |
|
|
|
int connection_send_1xx (request_st *r, connection *con); |
|
|
|
connection * connection_accepted(server *srv, const struct server_socket *srv_socket, sock_addr *cnt_addr, int cnt); |
|
|
|
void connection_state_machine(connection *con); |
|
|
|
extern connections *connection_joblist; |
|
#define joblist_append(con) connection_list_append(connection_joblist, (con)) |
|
void connection_list_append(connections *conns, connection *con); |
|
|
|
#endif
|
|
|