Merge branch 'master' of https://github.com/jinliu/shadowsocks into jinliu-master
This commit is contained in:
commit
6bbf347d0e
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ class TCPRelayHandler(object):
|
||||||
self._create_remote_socket(self._chosen_server[0],
|
self._create_remote_socket(self._chosen_server[0],
|
||||||
self._chosen_server[1])
|
self._chosen_server[1])
|
||||||
self._loop.add(remote_sock, eventloop.POLL_ERR)
|
self._loop.add(remote_sock, eventloop.POLL_ERR)
|
||||||
data = ''.join(self._data_to_write_to_local)
|
data = b''.join(self._data_to_write_to_local)
|
||||||
l = len(data)
|
l = len(data)
|
||||||
s = remote_sock.sendto(data, MSG_FASTOPEN, self._chosen_server)
|
s = remote_sock.sendto(data, MSG_FASTOPEN, self._chosen_server)
|
||||||
if s < l:
|
if s < l:
|
||||||
|
|
Loading…
Reference in a new issue