21 lines
334 B
C
21 lines
334 B
C
#ifndef SERVER_H
|
|
#define SERVER_H
|
|
|
|
#define _POSIX_C_SOURCE 200809L
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
#include <netinet/in.h>
|
|
#include "errors.h"
|
|
#include "challenges.h"
|
|
#include "challengesLib.h"
|
|
#include "sockets.h"
|
|
|
|
#define TIME_SLEEP 2
|
|
|
|
void startChallenge();
|
|
|
|
#endif |