in reply to Creating 2 sockets in a script.
I don't understand this. It's ok. But, if you want to create the secondary socket when the first socket fails and send message to secondary when the primary fails.
Here is my sample. May be you want this.
use strict; use warnings; use IO::Socket::INET; my $portp = 5000; my $ports = 5001; my $hostp = "localhost"; my $hosts = "localhost"; my $sock = IO::Socket::INET->new(Proto => 'tcp', PeerPort => $portp, P +eerAddr => $hostp) || IO::Socket::INET->new(Proto => 'tcp', PeerPort +=> $ports, PeerAddr => $hosts) or die "Can't create socket: $!\n"; while(1) { print $sock "Hello from client\n"; sleep 1; }
|
|---|