blob: 227412497c7d85508ca08b2f736d69892e7619d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#ifndef CURVETUN_H
#define CURVETUN_H
#include <unistd.h>
#define FILE_CLIENTS ".curvetun/clients"
#define FILE_SERVERS ".curvetun/servers"
#define FILE_PRIVKEY ".curvetun/priv.key"
#define FILE_PUBKEY ".curvetun/pub.key"
#define FILE_USERNAM ".curvetun/username"
#define LOCKFILE "/var/run/curvetun.pid"
#define DEFAULT_KEY_LEN 64
#define PROTO_FLAG_EXIT (1 << 0)
#define PROTO_FLAG_INIT (1 << 1)
struct ct_proto {
uint16_t payload;
uint8_t flags;
} __attribute__((packed));
/* FIXME: think up sth better */
#define TUNBUFF_SIZ (3 * RUNTIME_PAGE_SIZE)
#define MAX_EPOLL_SIZE 10000
#define THREADS_PER_CPU 2
extern int server_main(char *home, char *dev, char *port, int udp,
int ipv4, int log);
extern int client_main(char *home, char *dev, char *host, char *port, int udp);
#define DEVNAME_SERVER "curves0"
#define DEVNAME_CLIENT "curvec0"
#endif /* CURVETUN_H */
|