Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: IO Socket buffer flushing

by zentara (Archbishop)
on Jan 29, 2010 at 13:24 UTC ( [id://820353]=note: print w/replies, xml ) Need Help??


in reply to IO Socket buffer flushing

I havn't run your code, but it looks like you are using very low level socket code, and that involves alot of handshaking, which you may need improving upon. Probably, you are getting into a deadlock condition, where both sides of the socket connection are waiting to send or receive.

One quick thing to try is put newlines into all syswrites, like

# syswrite($new_sock, $buf, 10); syswrite( $new_sock , "$buf\n\n", 10);
Another thing to try is using select ( or IO::Select) on the socket filehandles. That way you can do the read in a $select->can_read loop, which will keep the deadlock from occurring. Google for numerous Perl socket examples, like "perl socket IO::Select".

Also see the perl socket examples a basic socket tutorial


I'm not really a human, but I play one on earth.
Old Perl Programmer Haiku

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://820353]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (4)
As of 2024-04-19 15:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found