TCP Socket question

Donn Cave donn at oz.net
Wed Nov 15 02:26:21 EST 2000


Quoth cobrien at Radix.Net (Cary O'Brien):
...
| Also (although this doesn't matter so much in python) that reading
| 1024 bytes from a socket doesn't necessaraly return 1024 bytes. It
| can return form 1 to 1024.
|
| Similarly for writes.  You need to check the return code for the
| write to see how much was written.  If your reciever isn't reading
| fast enough you can try to write 1024 and actually end up sending
| nothing.
|
| Actually, does python re-try writes?  Re-try reads?

Nope.  You're right, you need to check the return.  I don't think
you could send 0 bytes, but you could send less than the full string.

	Donn Cave, donn at oz.net



More information about the Python-list mailing list