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.
lighttpd2/src/connection.h

17 lines
218 B
C

struct connection {
sock_addr dst_addr, src_addr;
GString *dst_addr_str, *src_addr_str;
action_stack action_stack;
request request;
physical physical;
GMutex *mutex;
struct log_t *log;
gint log_level;
};