blob: a62f1b809e22f758afdc6cf55e6e3b5c051e3cfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef __TUNNEL_H__
#define __TUNNEL_H__
#include <stdbool.h>
#define TUNNEL_SOCK_PATH "/tmp/tunnel.sock"
bool tunnel_alive(bool *alive);
int tunnel_client(void);
bool tunnel_daemon(int sock);
#endif
|