summaryrefslogtreecommitdiff
path: root/websocket/_core.py
diff options
context:
space:
mode:
authorliris <liris.pp@gmail.com>2014-08-26 10:33:38 +0900
committerliris <liris.pp@gmail.com>2014-08-26 10:33:38 +0900
commit748f56bbe015140e5b329731b76aecc9e4fde94f (patch)
treee3f72aa333c2aec8782abb3c69ab233044e750a9 /websocket/_core.py
parentaa66645afc6c8bc72e84e9de63d1752cf9ebad14 (diff)
downloadwebsocket-client-ssl.tar.gz
- add document how to disable ssl cert verification.ssl
- refs #101
Diffstat (limited to 'websocket/_core.py')
-rw-r--r--websocket/_core.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/websocket/_core.py b/websocket/_core.py
index 2776853..fba7e70 100644
--- a/websocket/_core.py
+++ b/websocket/_core.py
@@ -206,6 +206,8 @@ def create_connection(url, timeout=None, **options):
"http_proxy_host" - http proxy host name.
"http_proxy_port" - http proxy port. If not set, set to 80.
"enable_multithread" -> enable lock for multithread.
+ "sockopt" -> socket options
+ "sslopt" -> ssl option
"""
sockopt = options.get("sockopt", [])
sslopt = options.get("sslopt", {})