IRC SERVER
The goal of this project is to make you write your own IRC server.
|
Go to the source code of this file.
Macros | |
#define | MAX_CONNECTIONS 300 |
#define | MAX_BUFFER_SIZE 512 |
#define | MAX_CHANNELS 5 |
#define | SERVER_NAME "42irc-server" |
#define | MAX_ATTEMPTS 5 |
#define | SERVER_VERSION "0.0.1" |
#define | MAX_CLIENTS_PER_CHANNEL 255 |
Enumerations | |
enum | ClientStatus { ALIVE, DISCONNECTED } |
#define MAX_ATTEMPTS 5 |
#define MAX_BUFFER_SIZE 512 |
#define MAX_CHANNELS 5 |
#define MAX_CLIENTS_PER_CHANNEL 255 |
#define MAX_CONNECTIONS 300 |
#define SERVER_NAME "42irc-server" |
#define SERVER_VERSION "0.0.1" |
enum ClientStatus |