1 2 3 4 5 6 7 8 9 10
#ifndef TCPSERVER_H #define TCPSERVER_H #define LISTEN_PORT 8080 #define LISTEN_BACKLOG 5 int tcpserver(); #endif