In article <[email protected]>, MRAB <[email protected]> wrote: > >If you send the length as 4 bytes then you'll have to decide whether >it's big-endian or little-endian. An alternative is to send the length >as characters, terminated by, say, '\n' or chr(0).
Alternatively, make it a fixed-length string of bytes, zero-padded in front. -- Aahz ([email protected]) <*> http://www.pythoncraft.com/ "The volume of a pizza of thickness 'a' and radius 'z' is given by pi*z*z*a" -- http://mail.python.org/mailman/listinfo/python-list
