in reply to Really Need Help with SOCKETS

Hi,
I hope I do not look too nasty but... Try to have a look at the Net::IRC module. It does that for you and more beside :))

As it said inn the module man page:

use Net::IRC; $irc = new Net::IRC; $conn = $irc->newconn(Nick => 'some_nick', Server => 'some.irc.server.com', Port => 6667, Ircname => 'Some witty comment.'); $irc->start;
is all you need.

By the way, doing it through Socket, implies reading very carefully the IRC rfc.

Cheers
Leo TheHobbit
GED/CS d? s-:++ a+ C++ UL+++ P+++>+++++ E+ W++ N+ o K? !w O? M V PS+++
PE-- Y+ PPG+ t++ 5? X-- R+ tv+ b+++ DI? D G++ e*(++++) h r++ y+++(*)

Replies are listed 'Best First'.
Re: Re: Really Need Help with SOCKETS
by Jaspersan (Beadle) on Apr 19, 2002 at 16:39 UTC
    I was going to try to use the least amount of third party modules. I've allready read the IRC rfc. But i guess i can go ahead and use NET:IRC until i get the whole sockets problem fixed :)

    Thanks for the help
    ^jasper <jasper@wintermarket.org>