2018-01-27 21:22:47 +02:00
|
|
|
import enum
|
|
|
|
|
2013-11-01 14:12:50 -07:00
|
|
|
# After the connection is lost, log warnings after this many write()s.
|
2013-10-17 13:40:50 -07:00
|
|
|
LOG_THRESHOLD_FOR_CONNLOST_WRITES = 5
|
2013-11-01 14:12:50 -07:00
|
|
|
|
|
|
|
# Seconds to wait before retrying accept().
|
|
|
|
ACCEPT_RETRY_DELAY = 1
|
2017-11-07 17:23:29 +01:00
|
|
|
|
|
|
|
# Number of stack entries to capture in debug mode.
|
2017-11-07 09:05:15 -08:00
|
|
|
# The larger the number, the slower the operation in debug mode
|
2017-12-15 07:04:38 +02:00
|
|
|
# (see extract_stack() in format_helpers.py).
|
2017-11-07 17:23:29 +01:00
|
|
|
DEBUG_STACK_DEPTH = 10
|
2017-12-19 19:45:42 +00:00
|
|
|
|
|
|
|
# Number of seconds to wait for SSL handshake to complete
|
|
|
|
SSL_HANDSHAKE_TIMEOUT = 10.0
|
2018-01-27 21:22:47 +02:00
|
|
|
|
|
|
|
# The enum should be here to break circular dependencies between
|
|
|
|
# base_events and sslproto
|
|
|
|
class _SendfileMode(enum.Enum):
|
|
|
|
UNSUPPORTED = enum.auto()
|
|
|
|
TRY_NATIVE = enum.auto()
|
|
|
|
FALLBACK = enum.auto()
|