Linux premium256.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
Server IP : 162.0.217.164 & Your IP : 216.73.216.76
Domains :
Cant Read [ /etc/named.conf ]
User : niyknzcu
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
python313 /
lib64 /
python3.13 /
asyncio /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-05-23 09:03
__init__.py
1.19
KB
-rw-r--r--
2026-04-28 11:26
__main__.py
6.13
KB
-rw-r--r--
2026-04-28 11:26
base_events.py
79.36
KB
-rw-r--r--
2026-04-28 11:26
base_futures.py
1.93
KB
-rw-r--r--
2026-04-28 11:26
base_subprocess.py
10.09
KB
-rw-r--r--
2026-04-28 11:26
base_tasks.py
2.61
KB
-rw-r--r--
2026-04-28 11:26
constants.py
1.38
KB
-rw-r--r--
2026-04-28 11:26
coroutines.py
3.26
KB
-rw-r--r--
2026-04-28 11:26
events.py
29.09
KB
-rw-r--r--
2026-04-28 11:26
exceptions.py
1.71
KB
-rw-r--r--
2026-04-28 11:26
format_helpers.py
2.66
KB
-rw-r--r--
2026-04-28 11:26
futures.py
13.86
KB
-rw-r--r--
2026-04-28 11:26
locks.py
20.1
KB
-rw-r--r--
2026-04-28 11:26
log.py
124
B
-rw-r--r--
2026-04-28 11:26
mixins.py
481
B
-rw-r--r--
2026-04-28 11:26
proactor_events.py
32.74
KB
-rw-r--r--
2026-04-28 11:26
protocols.py
6.79
KB
-rw-r--r--
2026-04-28 11:26
queues.py
9.9
KB
-rw-r--r--
2026-04-28 11:26
runners.py
7.06
KB
-rw-r--r--
2026-04-28 11:26
selector_events.py
47.48
KB
-rw-r--r--
2026-04-28 11:26
sslproto.py
31.12
KB
-rw-r--r--
2026-04-28 11:26
staggered.py
6.91
KB
-rw-r--r--
2026-04-28 11:26
streams.py
27.81
KB
-rw-r--r--
2026-04-28 11:26
subprocess.py
7.56
KB
-rw-r--r--
2026-04-28 11:26
taskgroups.py
9.81
KB
-rw-r--r--
2026-04-28 11:26
tasks.py
38.83
KB
-rw-r--r--
2026-04-28 11:26
threads.py
790
B
-rw-r--r--
2026-04-28 11:26
timeouts.py
5.92
KB
-rw-r--r--
2026-04-28 11:26
transports.py
10.55
KB
-rw-r--r--
2026-04-28 11:26
trsock.py
2.42
KB
-rw-r--r--
2026-04-28 11:26
unix_events.py
53.14
KB
-rw-r--r--
2026-04-28 11:26
windows_events.py
31.87
KB
-rw-r--r--
2026-04-28 11:26
windows_utils.py
5.31
KB
-rw-r--r--
2026-04-28 11:26
Save
Rename
# 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 import enum # After the connection is lost, log warnings after this many write()s. LOG_THRESHOLD_FOR_CONNLOST_WRITES = 5 # Seconds to wait before retrying accept(). ACCEPT_RETRY_DELAY = 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). DEBUG_STACK_DEPTH = 10 # Number of seconds to wait for SSL handshake to complete # The default timeout matches that of Nginx. SSL_HANDSHAKE_TIMEOUT = 60.0 # Number of seconds to wait for SSL shutdown to complete # The default timeout mimics lingering_time SSL_SHUTDOWN_TIMEOUT = 30.0 # Used in sendfile fallback code. We use fallback for platforms # that don't support sendfile, or for TLS connections. SENDFILE_FALLBACK_READBUFFER_SIZE = 1024 * 256 FLOW_CONTROL_HIGH_WATER_SSL_READ = 256 # KiB FLOW_CONTROL_HIGH_WATER_SSL_WRITE = 512 # KiB # Default timeout for joining the threads in the threadpool THREAD_JOIN_TIMEOUT = 300 # 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()