Public Member Functions | |
def | __init__ |
Public Attributes | |
body_timeout | |
chunk_size | |
decompress | |
header_timeout | |
max_body_size | |
max_header_size | |
no_keep_alive |
Parameters for `.HTTP1Connection` and `.HTTP1ServerConnection`.
Definition at line 56 of file http1connection.py.
def tornado.http1connection.HTTP1ConnectionParameters.__init__ | ( | self, | |
no_keep_alive = False , |
|||
chunk_size = None , |
|||
max_header_size = None , |
|||
header_timeout = None , |
|||
max_body_size = None , |
|||
body_timeout = None , |
|||
decompress = False |
|||
) |
:arg bool no_keep_alive: If true, always close the connection after one request. :arg int chunk_size: how much data to read into memory at once :arg int max_header_size: maximum amount of data for HTTP headers :arg float header_timeout: how long to wait for all headers (seconds) :arg int max_body_size: maximum amount of data for body :arg float body_timeout: how long to wait while reading body (seconds) :arg bool decompress: if true, decode incoming ``Content-Encoding: gzip``
Definition at line 59 of file http1connection.py.
Definition at line 69 of file http1connection.py.
Definition at line 69 of file http1connection.py.
Definition at line 69 of file http1connection.py.
Definition at line 69 of file http1connection.py.
Definition at line 69 of file http1connection.py.
Definition at line 69 of file http1connection.py.
Definition at line 69 of file http1connection.py.