You cannot 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
339 B
C
24 lines
339 B
C
#ifndef _LIGHTTPD_CONNECTION_H_
|
|
#define _LIGHTTPD_CONNECTION_H_
|
|
|
|
struct connection {
|
|
|
|
sock_addr remote_addr, local_addr;
|
|
GString *remote_addr_str, *local_addr_str;
|
|
gboolean is_ssl;
|
|
|
|
action_stack action_stack;
|
|
|
|
gpointer *options;
|
|
|
|
request request;
|
|
physical physical;
|
|
|
|
GMutex *mutex;
|
|
|
|
struct log_t *log;
|
|
gint log_level;
|
|
};
|
|
|
|
#endif
|