Simple IRC server written on C++, based on RFCs 1459, 2812, 2813. This server does not support server-server communication. Tested clients: Weechat, Adium.
make
make bonus
./ircserv <port> <password for incoming connections>
./joker <path to config> <path to file with jokes>
Run weechat, adium or mb irssi(not tested), or just use netcat
nc localhost <port>
PASS <password>
NICK <nickname>
USER <username> * * :<Real name>
And you're in.
- JOIN
- LIST
- NAMES
- PART
- TOPIC
- NICK
- OPER
- QUIT
- NOTICE
- PRIVMSG
- MOTD
- KICK (only for channel op)
- KILL (only for server op)
- DIE (only for server op)