Last updated 1 year ago
Was this helpful?
Will fail with a connect error if there is not a socket server of some kind available on the specified host and port.
my $host = '127.0.0.1'; my $port = 256; my $client = IO::Socket::INET.new(:$host, :$port); $client.print( 'hello socket world' ); $client.close;