IRC SERVER
The goal of this project is to make you write your own IRC server.
|
#include <algorithm>
#include <fstream>
#include <netdb.h>
#include <unistd.h>
#include "./Message.hpp"
#include "./Replies.hpp"
#include "./config.hpp"
Go to the source code of this file.
Classes | |
class | Client |
Enumerations | |
enum | UserMode { USER_MODE_INVISIBLE = 0, USER_MODE_OPERATOR = 1, USER_MODE_REGISTERED = 2 } |
enum UserMode |