2
0
Fork 0
lighttpd2/src/connection.h

21 lines
290 B
C

#ifndef _LIGHTTPD_CONNECTION_H_
#define _LIGHTTPD_CONNECTION_H_
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;
};
#endif