#ifndef __SERVER_H__ #define __SERVER_H__ #include #include #include #include #include #include #include #include #define PORT 3030 // how many pending connections the queue will hold #define BACKLOG 10 int start_server(const char *hostname, const char *service); #endif