Re: asynchat network send problems

2006-03-02 Thread Scott David Daniels
Andreas R. wrote: > 4. In the found_terminator() method, the data is attempted to be > uncompressed, but it failes, since the received data does not have the > same size as the data which is sent. Sometimes, the difference in size > is often 512 between client and server, when running len(packet

asynchat network send problems

2006-03-01 Thread Andreas R.
Hello, I'm using Python's asynchat module for network support in a Python-based game, and I run into two problems, both of which occur at random times. Most of the time, the network sending and receiving is perfect, but about 1 out of 10 times, it fails with one of these errors: -- Problem 1. Wh