Hello,
I am using a server IO::Socket for incoming TCP connections. The program uses the IO::Handle->getline() function to read the command up to the command delimiter. This function is called only after verifying that data is available with IO::Select.
However, one client connection is occassionally giving problems during the reading of commands. The getline() functions returns a partial command and IO::Handle->error() is 1. The TCP connection is still alive, and after a few seconds the remaining data comes available for reading.
Is there any way I can get an error description to what happended here? I verified that the client program sending is not sending out these partial commands, it is writing whole commands to the server handle. Could it be a TCP packet size issue which is splitting commands into partial packets, where the second packet is received with a short delay? Anyone else experienced these partial commands?
In order to solve this problem, I would like to understand what is causing these partial commands.
Any help is appreciated.
Kind regards,
Marcel
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
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, details, 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, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
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.