bump
This commit is contained in:
parent
1dc6c4be45
commit
6e3fdd0d62
3 changed files with 8 additions and 2 deletions
6
CHANGES
6
CHANGES
|
@ -1,3 +1,9 @@
|
||||||
|
3.3.1 2017-05-18
|
||||||
|
- fix stop script
|
||||||
|
- Async DNS query under UDP
|
||||||
|
- fix old version of OpenSSL
|
||||||
|
- http reply
|
||||||
|
|
||||||
3.3.0 2017-05-11
|
3.3.0 2017-05-11
|
||||||
- connect_log include local addr & port
|
- connect_log include local addr & port
|
||||||
- fix auth_chain_a UDP bug
|
- fix auth_chain_a UDP bug
|
||||||
|
|
|
@ -656,7 +656,7 @@ class TCPRelayHandler(object):
|
||||||
common.connect_log('TCP request %s:%d by user %d' %
|
common.connect_log('TCP request %s:%d by user %d' %
|
||||||
(common.to_str(remote_addr), remote_port, self._user_id))
|
(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' and remote_port == 80:
|
||||||
backdata = b'HTTP/1.0 200 OK\r\nConnection: close\r\n\r\n' + common.to_bytes(version.version())
|
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._protocol.server_pre_encrypt(backdata)
|
||||||
backdata = self._encryptor.encrypt(backdata)
|
backdata = self._encryptor.encrypt(backdata)
|
||||||
backdata = self._obfs.server_encode(backdata)
|
backdata = self._obfs.server_encode(backdata)
|
||||||
|
|
|
@ -16,5 +16,5 @@
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
def version():
|
def version():
|
||||||
return '3.3.0 2017-05-11'
|
return '3.3.1 2017-05-18'
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue