Hello!
I have the following code:
#!/usr/bin/perl
use strict;
use warnings;
use Socket;
use FileHandle;
my $request;
my $port = 6699;
my $proto = getprotobyname('tcp');
socket(SERVER, PF_INET, SOCK_STREAM, $proto) or die "socket: $!\n";
setsockopt(SERVER, SOL_SOCKET, SO_REUSEADDR, 1) or die "setsockopt:
+ $!\n";
my $socketaddress = sockaddr_in($port, INADDR_ANY);
bind(SERVER, $socketaddress) or die "bind: $!\n";
listen(SERVER, SOMAXCONN) or die "listen: $!\n";
print "starting on port: $port...\n";
my $client;
for (; $client = accept(CLIENT, SERVER); close CLIENT)
{
print CLIENT "ready\015\012";
while (1)
{
CLIENT->autoflush(1);
my $request;
print $request = <CLIENT>;
#print $request;
chomp $request;
#chomp $request;
if ($request =~ /^help/)
{
print CLIENT "help!\015\012";
}
elsif ($request =~ /^quit/)
{
last;
}
}
}
This script is executed under Windows. I connect to the socket via telnet with putty. The first line that I send via telnet is received by the server, but I have strange chars before the received command. For example, when i type "help", the server receives the following: http://i.imgur.com/J0RVu.jpg
Thanks in advance!
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.
|
|