Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Transmit file over socket

by halley (Prior)
on Jan 20, 2004 at 15:27 UTC ( [id://322603]=note: print w/replies, xml ) Need Help??


in reply to Transmit file over socket

Pardon me for not reading two hundred lines of socket code before lunch, but the way the question was phrased, I think I might know the problem.

Sockets provide streams of data. A message that took one call to send, may take three calls to read. Or vice versa. With TCP, you can't assume that all of your message will be available at the same time. You can only assume that it will all eventually arrive, in order, or the socket will close.

Therefore, if the boundaries of data elements are important, then you need to put markers in the data stream itself, in such a way that you know if you have the whole data element, or even the whole marker, before you start using the data. If you don't have the whole marker, wait and read again, and then see if you have the whole marker.

Again, sorry for not studying the whole code, but as someone else posted, there are some good modules that already do TCP packets for you. Another place to look is Chapter 12 of Advanced Perl Programming (by Srinivasan).

--
[ e d @ h a l l e y . c c ]

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2024-04-25 15:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found