blob: 689fbf4d3e44a076bea0830739ec000a015f0790 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef H_SERVER_CONNECTION
#define H_SERVER_CONNECTION
#include "sds/sds.h"
#define vh_user 0
#define vh_path 1
#define vh_error 2
void on_connection(const char* client, const int fd_client, sds **vhosts, const int vhostsc);
#endif
|