17 lines
221 B
C
17 lines
221 B
C
#ifndef SERVER_H
|
|
#define SERVER_H
|
|
|
|
#include "header.h"
|
|
|
|
#define BACKLOG 128
|
|
|
|
struct Server {
|
|
const char *PORT;
|
|
};
|
|
|
|
struct Server server_constructor(char *PORT);
|
|
|
|
void launch(struct Server *server);
|
|
|
|
#endif // !SERVER_H
|