2013-04-10 22:43:41 -07:00
|
|
|
my $socket = IO::Socket::INET.new:
|
2018-06-22 20:57:24 +00:00
|
|
|
:localhost<localhost>,
|
|
|
|
|
:localport<12321>,
|
|
|
|
|
:listen;
|
2013-04-10 22:43:41 -07:00
|
|
|
|
|
|
|
|
while $socket.accept -> $conn {
|
|
|
|
|
say "Accepted connection";
|
2015-11-18 06:14:39 +00:00
|
|
|
start {
|
2013-04-10 22:43:41 -07:00
|
|
|
while $conn.recv -> $stuff {
|
|
|
|
|
say "Echoing $stuff";
|
2016-12-05 22:15:40 +01:00
|
|
|
$conn.print($stuff);
|
2013-04-10 22:43:41 -07:00
|
|
|
}
|
|
|
|
|
$conn.close;
|
|
|
|
|
}
|
|
|
|
|
}
|