Skip to content

Commit

Permalink
fix release bug
Browse files Browse the repository at this point in the history
  • Loading branch information
xxnet committed Jun 8, 2015
1 parent 33190ea commit 638cc05
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ XX-Net
下载链接:
==========
测试版:
https://codeload.github.com/XX-net/XX-Net/zip/1.14.11
https://codeload.github.com/XX-net/XX-Net/zip/1.15.0

稳定版:
https://codeload.github.com/XX-net/XX-Net/zip/1.14.10
Expand Down
4 changes: 2 additions & 2 deletions goagent/3.1.49/local/proxy_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def do_CONNECT_AGENT(self):
self.wfile.write(b'HTTP/1.1 200 OK\r\n\r\n')

try:
ssl_sock = ssl.wrap_socket(self.connection, keyfile=certfile, ciphers='ECDHE-RSA-AES128-SHA',certfile=certfile, server_side=True)
ssl_sock = ssl.wrap_socket(self.connection, keyfile=certfile, certfile=certfile, server_side=True)
except ssl.SSLError as e:
logging.info('ssl error: %s, create full domain cert for host:%s', e, host)
certfile = CertUtil.get_cert(host, full_name=True)
Expand Down Expand Up @@ -272,7 +272,7 @@ def do_CONNECT_DIRECT(self):
self.wfile.write(b'HTTP/1.1 200 OK\r\n\r\n')

try:
ssl_sock = ssl.wrap_socket(self.connection, keyfile=certfile, ciphers='ECDHE-RSA-AES128-SHA',certfile=certfile, server_side=True)
ssl_sock = ssl.wrap_socket(self.connection, keyfile=certfile, certfile=certfile, server_side=True)
except ssl.SSLError as e:
logging.info('ssl error: %s, create full domain cert for host:%s', e, host)
certfile = CertUtil.get_cert(host, full_name=True)
Expand Down

0 comments on commit 638cc05

Please sign in to comment.