Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
h11 /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2024-08-30 00:22
tests
[ DIR ]
drwxr-xr-x
2024-08-30 00:22
__init__.py
1.47
KB
-rw-r--r--
2022-01-20 05:32
_abnf.py
4.53
KB
-rw-r--r--
2022-01-20 05:32
_connection.py
25.86
KB
-rw-r--r--
2022-01-20 05:32
_events.py
11.54
KB
-rw-r--r--
2022-01-20 05:32
_headers.py
9.99
KB
-rw-r--r--
2022-01-20 05:32
_readers.py
8.17
KB
-rw-r--r--
2022-01-20 05:32
_receivebuffer.py
5.13
KB
-rw-r--r--
2022-01-20 05:32
_state.py
12.88
KB
-rw-r--r--
2022-01-20 05:32
_util.py
4.77
KB
-rw-r--r--
2022-01-20 05:32
_version.py
686
B
-rw-r--r--
2022-01-20 05:32
_writers.py
4.94
KB
-rw-r--r--
2022-01-20 05:32
py.typed
7
B
-rw-r--r--
2022-01-20 05:32
Save
Rename
# A highish-level implementation of the HTTP/1.1 wire protocol (RFC 7230), # containing no networking code at all, loosely modelled on hyper-h2's generic # implementation of HTTP/2 (and in particular the h2.connection.H2Connection # class). There's still a bunch of subtle details you need to get right if you # want to make this actually useful, because it doesn't implement all the # semantics to check that what you're asking to write to the wire is sensible, # but at least it gets you out of dealing with the wire itself. from h11._connection import Connection, NEED_DATA, PAUSED from h11._events import ( ConnectionClosed, Data, EndOfMessage, Event, InformationalResponse, Request, Response, ) from h11._state import ( CLIENT, CLOSED, DONE, ERROR, IDLE, MIGHT_SWITCH_PROTOCOL, MUST_CLOSE, SEND_BODY, SEND_RESPONSE, SERVER, SWITCHED_PROTOCOL, ) from h11._util import LocalProtocolError, ProtocolError, RemoteProtocolError from h11._version import __version__ PRODUCT_ID = "python-h11/" + __version__ __all__ = ( "Connection", "NEED_DATA", "PAUSED", "ConnectionClosed", "Data", "EndOfMessage", "Event", "InformationalResponse", "Request", "Response", "CLIENT", "CLOSED", "DONE", "ERROR", "IDLE", "MUST_CLOSE", "SEND_BODY", "SEND_RESPONSE", "SERVER", "SWITCHED_PROTOCOL", "ProtocolError", "LocalProtocolError", "RemoteProtocolError", )