blob: 014a5e57c16def93cf04dc3afbcfe13e47c75c51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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_server(void);
#endif
|