This is an IRC project for the 42 school. It allows users to connect to an IRC server and participate in channels.
- A C compiler (such as GCC)
- Clone this repository to your computer
- Navigate to the project directory
- Compile the project with the command
make
To use the IRC client, run the irc
executable with the following command:
./ircserv <port> <password>
./ircbot <ip> <port> <password>
/server add ircserv <ip>/<port> -password=<password>
The following make targets are available:
make
: Compile the projectmake clean
: Remove compiled filesmake fclean
: Remove compiled files and theirc
executablemake re
: Re-compile the project