The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#
# (c) Jan Gehring <jan.gehring@gmail.com>
# 
# vim: set ts=3 sw=3 tw=0:
# vim: set expandtab:
   
=head1 NAME

Rex::Commands::SimpleCheck - Simple tcp/alive checks

=head1 DESCRIPTION

With this module you can do simple tcp/alive checks.

=head1 SYNOPSIS

 if(is_port_open($remote_host, $port)) {
    print "Port $port is open\n";
 }

=head1 EXPORTED FUNCTIONS

=over 4

=cut


package Rex::Commands::SimpleCheck;
   
use strict;
use warnings;

use IO::Socket;
   
require Rex::Exporter;
use base qw(Rex::Exporter);
use vars qw(@EXPORT);
    
@EXPORT = qw(is_port_open);

=item is_port_open($ip, $port)

Check if something is listening on port $port of $ip.

=cut
sub is_port_open {

   my ($ip, $port, $type) = @_;

   $type ||= "tcp";

   my $socket = IO::Socket::INET->new(PeerAddr => $ip,
                                PeerPort => $port,
                                Proto    => $type,
                                Timeout  => 2,
                                Type     => SOCK_STREAM);

   if($socket) {
      close $socket;
      return 1;
   }

   return 0;

}

=back

=cut

1;