Browse Source

fix worker master

auth
clowwindy 11 years ago
parent
commit
a109f571e3
  1. 3
      CHANGES
  2. 4
      shadowsocks/asyncdns.py

3
CHANGES

@ -1,3 +1,6 @@
2.0.4 2014-06-12
- Fix worker master
2.0.3 2014-06-11 2.0.3 2014-06-11
- Fix table encryption with UDP - Fix table encryption with UDP

4
shadowsocks/asyncdns.py

@ -423,7 +423,9 @@ class DNSResolver(object):
self._send_req(hostname, QTYPE_A) self._send_req(hostname, QTYPE_A)
def close(self): def close(self):
self._sock.close() if self._sock:
self._sock.close()
self._sock = None
def test(): def test():

Loading…
Cancel
Save