/* sWrapper Library Basic networking functions which simplify the task of using sockets. */ #include #include #include #include #include #include #include #include #include #include #include #include int s_connect (char *host, int port); int connect_w_to (char *host, int port, int TimeOut); int s_serve (int port, int socketN); //int s_serve_reuseport (int port, int socketN); int s_write(int sfd, char *str, int len); int s_read(int sfd, char *str, int len); int s_close(int fd);