weird problem...
my code is:
....
my $conn = $irc->newconn(
Server => '$server',
Port => shift || '6667',
Nick => 'sickbot',
Ircname => 'bot',
Username => 'bot'
)
or die "Can't connect to IRC server.\n";
...
this give error:
Use of uninitialized value in subroutine entry at /usr/lib/perl5/5.8.0/i386-linux/Socket.pm line 373.
Bad arg length for Socket::pack_sockaddr_in, length is 0, should be 4 at /usr/lib/perl5/5.8.0/i386-linux/Socket.pm line 373.
this worl fine if i change Server => 'irc.quakenet.org',
what's wrong?
|