I'am using this message convetion : %total_msg_length%|%msg_body% to recieve string data over tcp-sockets (python/pyqt). Is this is the good convetion, or should i try something else?

link|improve this question

25% accept rate
feedback

1 Answer

It's not uncommon.

Another way than having a separator (like your |) would be to have the message length be fixed size, like always 4 or 8 characters. Then you can read 4 (or 8 or what you choose) to get the message size. The problem with this is that you have to make at least two calls to recv: One for the length and one for the body.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.