#ifndef _LIB_H_ #define _LIB_H_ #define BUFSIZE 20 // debug flags #define DEBUG 0x1 #define DEBUG_LEN 40 #include #include #include #include #include #include #include #include #include #include /************************************************ **** Signatures **** ************************************************/ int debug(const char* tag, const char* msg); int xlisten(const int port); int xconnect(const char* hostname, const int port, struct sockaddr_in* serv); int xread(const int xsocket, struct sockaddr_in *client, char* buffer, int bufsize); int xwrite(const int xsocket, char* buffer, struct sockaddr_in* target); #endif