Import IO::Socket::INET

We've always required IO::Socket::INET but never explicitly included
it. For some reason that hasn't been a problem until now.

Fixes #255
This commit is contained in:
Richard Hansen 2020-07-12 18:51:53 -04:00
parent 7a21c1646c
commit 7d58f2d749
2 changed files with 2 additions and 0 deletions

View file

@ -40,6 +40,7 @@ m4_foreach_w([_m], [
File::Basename File::Basename
File::Path File::Path
Getopt::Long Getopt::Long
IO::Socket::INET
Socket Socket
Sys::Hostname Sys::Hostname
version=0.77 version=0.77

View file

@ -25,6 +25,7 @@ use warnings;
use File::Basename; use File::Basename;
use File::Path qw(make_path); use File::Path qw(make_path);
use Getopt::Long; use Getopt::Long;
use IO::Socket::INET;
use Socket qw(AF_INET AF_INET6 PF_INET PF_INET6); use Socket qw(AF_INET AF_INET6 PF_INET PF_INET6);
use Sys::Hostname; use Sys::Hostname;