bcssocket/include/server.h

26 lines
449 B
C

#ifndef SERVER_H
#define SERVER_H
#define _POSIX_C_SOURCE 200809L
#include <stdio.h>
#include <sys/socket.h>
#include <arpa/inet.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"
#define MAX_LEN 100
#define PORT 8080
#define ADDRESS "127.0.0.1"
#define MAX_PEND_REQ 3
#define TIME_SLEEP 2
void startChallenge();
#endif