You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
297 B
Perl

use IO::Socket;
$server = IO::Socket::INET->new
(
LocalPort => 1116,
Type => SOCK_STREAM,
Reuse => 1,
Listen => 5
) or die "Could not open port.\n";
while ($client = $server->accept()) {
$line = <$client>;
print $line;
}
close($server);