next up previous contents
suivant: Utiliser un client UDP monter: Communication inter-process précédent: Créer des processus   Table des matières

Utiliser un client TCP

Utiliser le module IO::Socket :

#!/usr/local/bin/perl
use strict;
use IO::Socket;
my $remote_host = "127.0.0.1"; my $remote_port = 25;
if(IO::Socket::INET->new(
                PeerAddr => $remote_host,
                PeerPort => $remote_port,
                Proto => "tcp",
                Type => SOCK_STREAM)) {
    print "Daemon OK\n";
}
else {
    warn "Daemon NOK $!\n";
}



Stephane TOUGARD 2002-09-07