View Single Post
Old 06-13-2002, 01:56 AM   #1 (permalink)
abc123
bloomberg
 
abc123's Avatar
 
Join Date: Jun 2002
Location: bloomberg
Posts: 263
abc123 is on a distinguished road
Send a message via AIM to abc123 Send a message via Yahoo to abc123
IRC Connection Protocol...

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.
__________________
-- bloomberg.
abc123 is offline   Reply With Quote