Skip to content

Connecting to the Server

Clément Hamada edited this page Mar 31, 2021 · 3 revisions

Developers can use netcat to connect to the SocketServer and irc::Server to send messages and debug commands.

The RFC specification requires a carriage-return, line-feed sequence to be the final characters of an IRC message. Therefore you'll need to pass a special flag like this: ncat --crlf 127.0.0.1 2525 or ncat -C 127.0.0.1 2525.

Clone this wiki locally