k, im making an irc client in java
my connection looks like this so far:
Code:
outbound.println("PASS nothing");
outbound.println("NICK abcIRC_Client");
outbound.println("USER guest 0 * :nobody");
outbound.println("JOIN #beep");
but this does not "register" me on any server...
i checked the IRC RFC which says the syntax for USER is:
Command: USER
Parameters: <user> <mode> <unused> <realname>
and i am following the example there, but still having troubles..
anyone got any clues? thanks.