1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Contains code from https://github.com/MagicStack/uvloop/tree/v0.16.0
# SPDX-License-Identifier: PSF-2.0 AND (MIT OR Apache-2.0)
# SPDX-FileCopyrightText: Copyright (c) 2015-2021 MagicStack Inc. http://magic.io
# After the connection is lost, log warnings after this many write()s.
= 5
# Seconds to wait before retrying accept().
= 1
# Number of stack entries to capture in debug mode.
# The larger the number, the slower the operation in debug mode
# (see extract_stack() in format_helpers.py).
= 10
# Number of seconds to wait for SSL handshake to complete
# The default timeout matches that of Nginx.
= 60.0
# Number of seconds to wait for SSL shutdown to complete
# The default timeout mimics lingering_time
= 30.0
# Used in sendfile fallback code. We use fallback for platforms
# that don't support sendfile, or for TLS connections.
= 1024 * 256
= 256 # KiB
= 512 # KiB
# Default timeout for joining the threads in the threadpool
= 300
# The enum should be here to break circular dependencies between
# base_events and sslproto
=
=
=