programming-examples/perl/Network/Open a socket.pl

13 lines
264 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
use IO::Socket;
$socket = IO::Socket::INET->new
(
PeerAddr => 'yourserver.com',
PeerPort => 1116,
Proto => "tcp",
Type => SOCK_STREAM
) or die "Could not open port.\n";
print $socket "Hello from the client!\n";
close($socket);