send the user set ip address to the irc server (for whatever that's worth, i don't think it's used)

This commit is contained in:
jluehrs2 2007-09-04 00:07:09 -05:00
parent c85a06f603
commit 11f6faae12

View File

@ -670,7 +670,7 @@ function connect(args)
_register_socket(irc_sock, 'r', incoming_message)
if args.pass then send("PASS", args.pass) end
send("NICK", nick)
send("USER", username, (irc_sock:getsockname()), network, realname)
send("USER", username, get_ip(), network, realname)
begin_main_loop()
end
-- }}}