You most likely have tried to use a "telnet" connection in PuTTY, which results in some control characters being sent when the connection is established. You need a raw connection. Select "Raw" instead of "Telnet" when you create the connection, or try this from a command prompt (assuming putty.exe is in your path or in the current directory):
putty -raw localhost 6699
Then it works.
Secondly, have you considered using the OO interface to sockets in Perl? In can clean up your code significantly:
#!/usr/bin/perl
use strict;
use warnings;
use IO::Socket qw/:DEFAULT :crlf/;
use FileHandle;
use 5.014;
my $port = 6699;
my $server = IO::Socket::INET->new( Proto => 'tcp',
LocalHost => 'localhost',
LocalPort => $port,
Listen => 1,
Reuse => 1);
die "Server setup failed: $!" unless $server;
say "starting on port: $port...";
while (my $client = $server->accept()) {
print $client "ready$CRLF";
local $/ = LF; # Be robust about accepting LF or CRLF endings on
+input
CLIENT: while (<$client>) {
s/$CR?$LF//; # chomp CRLF or LF
say "Client request: `$_'";
for ($_) {
print $client "help!$CRLF" when /^help/;
last CLIENT when 'quit';
}
}
say "Disconnected";
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|