#ifndef __TUNNEL_H__ #define __TUNNEL_H__ #include #define TUNNEL_SOCK_PATH "/tmp/tunnel.sock" bool tunnel_alive(bool *alive); int tunnel_client(void); bool tunnel_server(void); #endif