IRC SERVER
The goal of this project is to make you write your own IRC server.
config.hpp
Go to the documentation of this file.
1
#ifndef CONFIG_H
2
#define CONFIG_H
3
4
#define MAX_CONNECTIONS 300
5
#define MAX_BUFFER_SIZE 512
6
#define MAX_CHANNELS 5
7
#define SERVER_NAME "42irc-server"
8
#define MAX_ATTEMPTS 5
9
#define SERVER_VERSION "0.0.1"
10
#define MAX_CLIENTS_PER_CHANNEL 255
11
12
enum
ClientStatus
13
{
14
ALIVE
,
15
DISCONNECTED
16
};
17
18
#endif
DISCONNECTED
@ DISCONNECTED
Definition:
config.hpp:15
ClientStatus
ClientStatus
Definition:
config.hpp:12
ALIVE
@ ALIVE
Definition:
config.hpp:14
includes
config.hpp
Generated on Thu Apr 20 2023 15:38:45 for IRC SERVER by
1.8.17