Browse Source

update log

auth
clowwindy 11 years ago
parent
commit
1966b643fc
  1. 4
      CHANGES
  2. 2
      shadowsocks/tcprelay.py

4
CHANGES

@ -1,3 +1,7 @@
2.0 2014-06-02
- Use a new event model
- Remove gevent
1.4.5 2014-05-24 1.4.5 2014-05-24
- Add timeout in TCP server - Add timeout in TCP server
- Close sockets in master process - Close sockets in master process

2
shadowsocks/tcprelay.py

@ -231,7 +231,7 @@ class TCPRelayHandler(object):
raise Exception('can not parse header') raise Exception('can not parse header')
addrtype, remote_addr, remote_port, header_length =\ addrtype, remote_addr, remote_port, header_length =\
header_result header_result
logging.debug('connecting %s:%d' % (remote_addr, remote_port)) logging.info('connecting %s:%d' % (remote_addr, remote_port))
self._remote_address = (remote_addr, remote_port) self._remote_address = (remote_addr, remote_port)
if is_local: if is_local:
# forward address to remote # forward address to remote

Loading…
Cancel
Save