bcssocket/include/server.h

23 lines
396 B
C

#ifndef SERVER_H
#define SERVER_H
#include <stdio.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include "errors.h"
#include <netinet/in.h>
#include "challenges.h"
#define MAX_LEN 100
#define PORT 8080
#define ADDRESS "127.0.0.1"
#define MAX_PEND_REQ 3
#define MAX_CHALLENGES 2
#define TIME_SLEEP 2
void startChallenge();
#endif