Browse Source
Clearer documentation for the `max_http_buffer_size` argument (Fixes #1272)
pull/1298/head
Miguel Grinberg
1 year ago
Failed to extract signature
2 changed files with
10 additions and
6 deletions
-
src/socketio/async_server.py
-
src/socketio/server.py
|
|
@ -65,9 +65,11 @@ class AsyncServer(base_server.BaseServer): |
|
|
|
:param ping_timeout: The time in seconds that the client waits for the |
|
|
|
server to respond before disconnecting. The default |
|
|
|
is 20 seconds. |
|
|
|
:param max_http_buffer_size: The maximum size of a message when using the |
|
|
|
polling transport. The default is 1,000,000 |
|
|
|
bytes. |
|
|
|
:param max_http_buffer_size: The maximum size that is accepted for incoming |
|
|
|
messages. The default is 1,000,000 bytes. In |
|
|
|
spite of its name, the value set in this |
|
|
|
argument is enforced for HTTP long-polling and |
|
|
|
WebSocket connections. |
|
|
|
:param allow_upgrades: Whether to allow transport upgrades or not. The |
|
|
|
default is ``True``. |
|
|
|
:param http_compression: Whether to compress packages when using the |
|
|
|
|
|
@ -74,9 +74,11 @@ class Server(base_server.BaseServer): |
|
|
|
:param ping_timeout: The time in seconds that the client waits for the |
|
|
|
server to respond before disconnecting. The default |
|
|
|
is 20 seconds. |
|
|
|
:param max_http_buffer_size: The maximum size of a message when using the |
|
|
|
polling transport. The default is 1,000,000 |
|
|
|
bytes. |
|
|
|
:param max_http_buffer_size: The maximum size that is accepted for incoming |
|
|
|
messages. The default is 1,000,000 bytes. In |
|
|
|
spite of its name, the value set in this |
|
|
|
argument is enforced for HTTP long-polling and |
|
|
|
WebSocket connections. |
|
|
|
:param allow_upgrades: Whether to allow transport upgrades or not. The |
|
|
|
default is ``True``. |
|
|
|
:param http_compression: Whether to compress packages when using the |
|
|
|