4 * (c) 2007 Martin Mares <mj@ucw.cz>
10 #include "lib/clists.h"
11 #include "lib/ipaccess.h"
12 #include "lib/fastbuf.h"
14 #include <gnutls/gnutls.h>
15 #include <gnutls/x509.h>
19 struct ip_addrmask addrmask;
26 // Set up by the master process
29 byte *ip_string; // (xmalloced)
32 struct access_rule *rule; // Rule matched by this connection
33 int sk; // Client socket
34 byte *cert_name; // Client name from the certificate (NULL if no TLS) (xmalloced)
36 // Used by the child process
37 gnutls_session_t tls; // TLS session
38 struct fastbuf rx_fb, tx_fb; // Fastbufs for communication with the client (either plain-text or TLS)
45 extern uns max_request_size, max_attachment_size, trace_commands;
49 void NONRET client_error(char *msg, ...);
53 int process_init(struct conn *c);
54 int process_command(struct conn *c);