forked from scott/threaded_network_chat
10 lines
147 B
C
10 lines
147 B
C
#ifndef SERVER_H
|
|
#define SERVER_H
|
|
|
|
void *waitForClient(void *argss);
|
|
void *pollForClient();
|
|
int setupServer(int port);
|
|
void closeServer();
|
|
|
|
#endif
|