When using the IO::Socket::INET one gets the error:<br />
'Your vendor has not defined Socket macro SO_REUSEPORT, used at /usr/lib64/perl5/IO/Socket/INET.pm line 194'<br />
<br />
This happens because the "Reuse" param is a deprecated alias for ReuseAddr.<br />
When replacing 'SO_REUSEPORT' with 'SO_REUSEADDR' in /usr/lib64/perl5/IO/Socket/INET.pm all works.<br />
<br />
This is also explained here:<br />
<a href="http://www.perlmonks.org/?node_id=158825">http://www.perlmonks.org/?node_id=158825</a> [<a href="http://www.perlmonks.org/?node_id=158825" target="_blank">^</a>]
↧