diff options
Diffstat (limited to 'common/udpovertcp.py')
-rw-r--r-- | common/udpovertcp.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/common/udpovertcp.py b/common/udpovertcp.py index eae3d6b..f99b2b3 100644 --- a/common/udpovertcp.py +++ b/common/udpovertcp.py @@ -1,5 +1,5 @@ from socket import * -from msgstruct import * +from .msgstruct import * #from fcntl import ioctl #from termios import TIOCOUTQ from zlib import compressobj, Z_SYNC_FLUSH @@ -19,12 +19,12 @@ class SocketMarshaller: # try to reduce TCP latency try: tcpsock.setsockopt(SOL_IP, IP_TOS, 0x10) # IPTOS_LOWDELAY - except error, e: - print "Cannot set IPTOS_LOWDELAY for client:", str(e) + except error as e: + print("Cannot set IPTOS_LOWDELAY for client:", str(e)) try: tcpsock.setsockopt(SOL_TCP, TCP_NODELAY, 1) - except error, e: - print "Cannot set TCP_NODELAY for client:", str(e) + except error as e: + print("Cannot set TCP_NODELAY for client:", str(e)) compressor = compressobj(6) self.compress = compressor.compress self.compress_flush = compressor.flush |