File tree 4 files changed +14
-2
lines changed
4 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -53,11 +53,14 @@ class AsyncClient(base_client.BaseClient):
53
53
:param http_session: an initialized ``aiohttp.ClientSession`` object to be
54
54
used when sending requests to the server. Use it if
55
55
you need to add special client options such as proxy
56
- servers, SSL certificates, etc.
56
+ servers, SSL certificates, custom CA bundle, etc.
57
57
:param ssl_verify: ``True`` to verify SSL certificates, or ``False`` to
58
58
skip SSL certificate verification, allowing
59
59
connections to servers with self signed certificates.
60
60
The default is ``True``.
61
+ :param websocket_extra_options: Dictionary containing additional keyword
62
+ arguments passed to
63
+ ``websocket.create_connection()``.
61
64
:param engineio_logger: To enable Engine.IO logging set to ``True`` or pass
62
65
a logger object to use. To disable logging set to
63
66
``False``. The default is ``False``. Note that
Original file line number Diff line number Diff line change @@ -102,6 +102,9 @@ class AsyncServer(base_server.BaseServer):
102
102
inactive clients are closed. Set to ``False`` to
103
103
disable the monitoring task (not recommended). The
104
104
default is ``True``.
105
+ :param transports: The list of allowed transports. Valid transports
106
+ are ``'polling'`` and ``'websocket'``. Defaults to
107
+ ``['polling', 'websocket']``.
105
108
:param engineio_logger: To enable Engine.IO logging set to ``True`` or pass
106
109
a logger object to use. To disable logging set to
107
110
``False``. The default is ``False``. Note that
Original file line number Diff line number Diff line change @@ -56,11 +56,14 @@ class Client(base_client.BaseClient):
56
56
:param http_session: an initialized ``requests.Session`` object to be used
57
57
when sending requests to the server. Use it if you
58
58
need to add special client options such as proxy
59
- servers, SSL certificates, etc.
59
+ servers, SSL certificates, custom CA bundle, etc.
60
60
:param ssl_verify: ``True`` to verify SSL certificates, or ``False`` to
61
61
skip SSL certificate verification, allowing
62
62
connections to servers with self signed certificates.
63
63
The default is ``True``.
64
+ :param websocket_extra_options: Dictionary containing additional keyword
65
+ arguments passed to
66
+ ``websocket.create_connection()``.
64
67
:param engineio_logger: To enable Engine.IO logging set to ``True`` or pass
65
68
a logger object to use. To disable logging set to
66
69
``False``. The default is ``False``. Note that
Original file line number Diff line number Diff line change @@ -106,6 +106,9 @@ class Server(base_server.BaseServer):
106
106
inactive clients are closed. Set to ``False`` to
107
107
disable the monitoring task (not recommended). The
108
108
default is ``True``.
109
+ :param transports: The list of allowed transports. Valid transports
110
+ are ``'polling'`` and ``'websocket'``. Defaults to
111
+ ``['polling', 'websocket']``.
109
112
:param engineio_logger: To enable Engine.IO logging set to ``True`` or pass
110
113
a logger object to use. To disable logging set to
111
114
``False``. The default is ``False``. Note that
You can’t perform that action at this time.
0 commit comments