]> git.proxmox.com Git - pve-common.git/blobdiff - src/PVE/Network.pm
createSchema: include type property
[pve-common.git] / src / PVE / Network.pm
index ff4a89c4a8beb1fe4c50174e785f72852507dee0..60afe5040e9944e2529b54ba36fd984d16e04b64 100644 (file)
@@ -6,6 +6,8 @@ use PVE::Tools qw(run_command);
 use PVE::ProcFSTools;
 use PVE::INotify;
 use File::Basename;
+use IO::Socket::IP;
+use POSIX qw(ECONNREFUSED);
 
 # host network related utility functions
 
@@ -437,4 +439,32 @@ sub activate_bridge_vlan {
     return $bridgevlan;
 }
 
+sub tcp_ping {
+    my ($host, $port, $timeout) = @_;
+
+    my $refused = 1;
+
+    $timeout = 3 if !$timeout; # sane default
+    if (!$port) {
+       # Net::Ping defaults to the echo port
+       $port = 7;
+    } else {
+       # Net::Ping's port_number() implies service_check(1)
+       $refused = 0;
+    }
+
+    my ($sock, $result);
+    eval {
+       $result = PVE::Tools::run_with_timeout($timeout, sub {
+           $sock = IO::Socket::IP->new(PeerHost => $host, PeerPort => $port, Type => SOCK_STREAM);
+           $result = $refused if $! == ECONNREFUSED;
+       });
+    };
+    if ($sock) {
+       $sock->close();
+       $result = 1;
+    }
+    return $result;
+}
+
 1;