Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[perl IRC] problème avec le package dev-perl/Net-IRC 0.74
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index French
View previous topic :: View next topic  
Author Message
Whoo
n00b
n00b


Joined: 25 May 2003
Posts: 27
Location: Quebec ;)

PostPosted: Thu Aug 21, 2003 6:25 pm    Post subject: [perl IRC] problème avec le package dev-perl/Net-IRC 0.74 Reply with quote

Bonjour,

Ce simple bout de code ne fonctionne pas :(

Code:
#!/usr/bin/perl
use Net::IRC;
use Net::IRC::Event;
use Net::IRC::Connection;
use Net::IRC::DCC;

my $irc = new Net::IRC;
my $conn = $irc->newconn( Server => '127.0.0.1',
                          Port   => 6667,
                          Nick   => 'Whoo',
                          Username => 'Whoo'
                          );


Avec un :
Can't connect to 127.0.0.1:6667! at /usr/lib/perl5/vendor_perl/5.8.0/Net/IRC.pm line 203

Si quelqu'un à une idée :)
Back to top
View user's profile Send private message
gim
Guru
Guru


Joined: 29 Apr 2003
Posts: 418
Location: milky-way

PostPosted: Thu Aug 21, 2003 9:55 pm    Post subject: Reply with quote

Ouep, j'avais eu le même problème : Essaye de rajouter
Code:
LocalAddr => $ton_ip

dans les paramètres de newconn. (Je sais pas si ca marche avec le hostname)

Mais j'avais pas ce problème quand j'essayais de me connecter sur localhost... seulement quand le serveur etait ailleur. Peut être que tu as le même problème que moi parce que tu as mis "127.0.0.1" et pas "localhost" :?.

Tant qu'on y est, t'as qu'a aussi essayer de faire un telnet 127.0.0.1 6667 pour voir si c'est réellement dû à perl... (au fait, c'est fun IRC en telnet, vous avez jamais essayé ? :P)
Back to top
View user's profile Send private message
Leander256
l33t
l33t


Joined: 05 Jul 2003
Posts: 910
Location: Singapour

PostPosted: Thu Aug 21, 2003 10:53 pm    Post subject: Reply with quote

[off topic] Le truc, c'est de ne pas rater les requêtes PING du serveur :wink: [/off topic]
Back to top
View user's profile Send private message
Whoo
n00b
n00b


Joined: 25 May 2003
Posts: 27
Location: Quebec ;)

PostPosted: Fri Aug 22, 2003 6:13 pm    Post subject: Reply with quote

Super ca marche ;)

En plus c'est logique pour effectuer la connexion sur Irc en telnet il faut fournir ton ip ;) Si elle est pas dans le fichier host alors ca déconne.

La solution est donc :
Code:

my $conn = $irc->newconn( Server => '130.239.18.172',
                          Port   => 6667,
                          LocalAddr => 'Votre_Ip_Public',
                          Nick   => 'Gloups');


Ps:
J'ai recompilé 2 fois tout mon perl pour rien ;)
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index French All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum