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 
13 {
16 };
17 
18 #endif
DISCONNECTED
@ DISCONNECTED
Definition: config.hpp:15
ClientStatus
ClientStatus
Definition: config.hpp:12
ALIVE
@ ALIVE
Definition: config.hpp:14