| Current Path : /proc/thread-self/root/usr/share/doc/perl-IO-Socket-Multicast/examples/ |
| Current File : //proc/thread-self/root/usr/share/doc/perl-IO-Socket-Multicast/examples/client.pl |
#!/usr/bin/perl
use strict;
use lib '../blib/lib','../blib/arch';
use IO::Socket::Multicast;
use constant GROUP => '226.1.1.2';
use constant PORT => '2000';
my $sock = IO::Socket::Multicast->new(LocalPort=>PORT,ReuseAddr=>1);
$sock->mcast_add(GROUP) || die "Couldn't set group: $!\n";
while (1) {
my $data;
next unless $sock->recv($data,1024);
print $data;
}