diff --git a/socketio/asyncio_client.py b/socketio/asyncio_client.py index 1ec3660..dd8caf3 100644 --- a/socketio/asyncio_client.py +++ b/socketio/asyncio_client.py @@ -49,6 +49,12 @@ class AsyncClient(client.Client): The Engine.IO configuration supports the following settings: + :param request_timeout: A timeout in seconds for requests. The default is + 5 seconds. + :param ssl_verify: ``True`` to verify SSL certificates, or ``False`` to + skip SSL certificate verification, allowing + connections to servers with self signed certificates. + The default is ``True``. :param engineio_logger: To enable Engine.IO logging set to ``True`` or pass a logger object to use. To disable logging set to ``False``. The default is ``False``. diff --git a/socketio/client.py b/socketio/client.py index 7ab64ed..0751c29 100644 --- a/socketio/client.py +++ b/socketio/client.py @@ -65,6 +65,12 @@ class Client(object): The Engine.IO configuration supports the following settings: + :param request_timeout: A timeout in seconds for requests. The default is + 5 seconds. + :param ssl_verify: ``True`` to verify SSL certificates, or ``False`` to + skip SSL certificate verification, allowing + connections to servers with self signed certificates. + The default is ``True``. :param engineio_logger: To enable Engine.IO logging set to ``True`` or pass a logger object to use. To disable logging set to ``False``. The default is ``False``.