admiralfreezbee has asked for the wisdom of the Perl Monks concerning the following question:
This doesn't work (It says: Invalid argument: probably because FF02::1:2 is a multicast addressmy $remoteServer = 'FF02::1:2'; socket(SOCKET, PF_INET6, SOCK_DGRAM, $proto) or die("socket: $!"); my $addr=pack_sockaddr_in6(666, inet_pton (PF_INET6,$remoteServer)); bind(SOCKET, $addr) or die("bind: $!");
|
|---|