more reply addr
This commit is contained in:
parent
6e3fdd0d62
commit
7a68e4e637
1 changed files with 1 additions and 1 deletions
|
@ -655,7 +655,7 @@ class TCPRelayHandler(object):
|
|||
else:
|
||||
common.connect_log('TCP request %s:%d by user %d' %
|
||||
(common.to_str(remote_addr), remote_port, self._user_id))
|
||||
if remote_addr == b'0.0.0.0' and remote_port == 80:
|
||||
if (remote_addr == b'0.0.0.0' or remote_addr == b'255.0.0.255' or remote_addr == b'fe80::ffff') and remote_port == 80:
|
||||
backdata = b'HTTP/1.0 200 OK\r\nConnection: close\r\n\r\nShadowsocksR ' + common.to_bytes(version.version())
|
||||
backdata = self._protocol.server_pre_encrypt(backdata)
|
||||
backdata = self._encryptor.encrypt(backdata)
|
||||
|
|
Loading…
Add table
Reference in a new issue