add TCP_NODELAY

This commit is contained in:
clowwindy 2012-12-30 14:47:24 +08:00
parent 480c9ec51e
commit e8454cf9b1
2 changed files with 2 additions and 0 deletions

View file

@ -112,6 +112,7 @@ class Socks5Server(SocketServer.StreamRequestHandler):
try:
logging.info('connecting %s:%d' % (addr, port[0]))
remote = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
remote.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
remote.connect((addr, port[0]))
except socket.error, e:
# Connection refused