diff options
Diffstat (limited to 'tunnel.h')
| -rw-r--r-- | tunnel.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,9 +1,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); -int tunnel_daemon(int sock); + +bool tunnel_daemon(int sock); #endif |
