Hackfut Security File Manager
Current Path:
/opt/alt/python38/lib64/python3.8/site-packages/aiohttp
opt
/
alt
/
python38
/
lib64
/
python3.8
/
site-packages
/
aiohttp
/
📁
..
📁
.hash
📄
__init__.py
(6.77 KB)
📁
__pycache__
📄
_cparser.pxd
(3.87 KB)
📄
_find_header.c
(183.17 KB)
📄
_find_header.h
(170 B)
📄
_find_header.pxd
(68 B)
📄
_frozenlist.c
(287.3 KB)
📄
_frozenlist.pyx
(2.54 KB)
📄
_headers.pxi
(1.96 KB)
📄
_helpers.c
(207.02 KB)
📄
_helpers.pyi
(202 B)
📄
_helpers.pyx
(1.02 KB)
📄
_http_parser.c
(987.82 KB)
📄
_http_parser.pyx
(28.34 KB)
📄
_http_writer.c
(208.03 KB)
📄
_http_writer.pyx
(4.1 KB)
📄
_websocket.c
(134.21 KB)
📄
_websocket.pyx
(1.52 KB)
📄
abc.py
(5.12 KB)
📄
base_protocol.py
(2.64 KB)
📄
client.py
(42.89 KB)
📄
client_exceptions.py
(8.33 KB)
📄
client_proto.py
(7.97 KB)
📄
client_reqrep.py
(35.58 KB)
📄
client_ws.py
(10.05 KB)
📄
connector.py
(41.96 KB)
📄
cookiejar.py
(11.88 KB)
📄
formdata.py
(5.94 KB)
📄
frozenlist.py
(1.68 KB)
📄
frozenlist.pyi
(1.4 KB)
📄
hdrs.py
(3.37 KB)
📄
helpers.py
(22.38 KB)
📄
http.py
(1.78 KB)
📄
http_exceptions.py
(2.53 KB)
📄
http_parser.py
(30.06 KB)
📄
http_websocket.py
(24.51 KB)
📄
http_writer.py
(5.22 KB)
📄
locks.py
(1.19 KB)
📄
log.py
(325 B)
📄
multipart.py
(31.5 KB)
📄
payload.py
(13.02 KB)
📄
payload_streamer.py
(2.05 KB)
📄
py.typed
(7 B)
📄
pytest_plugin.py
(10.75 KB)
📄
resolver.py
(4.5 KB)
📄
signals.py
(852 B)
📄
signals.pyi
(319 B)
📄
streams.py
(20.05 KB)
📄
tcp_helpers.py
(962 B)
📄
test_utils.py
(19.78 KB)
📄
tracing.py
(14.03 KB)
📄
typedefs.py
(1.34 KB)
📄
web.py
(17.46 KB)
📄
web_app.py
(16.65 KB)
📄
web_exceptions.py
(9.87 KB)
📄
web_fileresponse.py
(8.81 KB)
📄
web_log.py
(7.32 KB)
📄
web_middlewares.py
(4.09 KB)
📄
web_protocol.py
(22.71 KB)
📄
web_request.py
(25.83 KB)
📄
web_response.py
(25.59 KB)
📄
web_routedef.py
(5.97 KB)
📄
web_runner.py
(10.93 KB)
📄
web_server.py
(2.01 KB)
📄
web_urldispatcher.py
(38.61 KB)
📄
web_ws.py
(16.39 KB)
📄
worker.py
(7.83 KB)
Editing: _cparser.pxd
from libc.stdint cimport uint16_t, uint32_t, uint64_t cdef extern from "../vendor/http-parser/http_parser.h": ctypedef int (*http_data_cb) (http_parser*, const char *at, size_t length) except -1 ctypedef int (*http_cb) (http_parser*) except -1 struct http_parser: unsigned int type unsigned int flags unsigned int state unsigned int header_state unsigned int index uint32_t nread uint64_t content_length unsigned short http_major unsigned short http_minor unsigned int status_code unsigned int method unsigned int http_errno unsigned int upgrade void *data struct http_parser_settings: http_cb on_message_begin http_data_cb on_url http_data_cb on_status http_data_cb on_header_field http_data_cb on_header_value http_cb on_headers_complete http_data_cb on_body http_cb on_message_complete http_cb on_chunk_header http_cb on_chunk_complete enum http_parser_type: HTTP_REQUEST, HTTP_RESPONSE, HTTP_BOTH enum http_errno: HPE_OK, HPE_CB_message_begin, HPE_CB_url, HPE_CB_header_field, HPE_CB_header_value, HPE_CB_headers_complete, HPE_CB_body, HPE_CB_message_complete, HPE_CB_status, HPE_CB_chunk_header, HPE_CB_chunk_complete, HPE_INVALID_EOF_STATE, HPE_HEADER_OVERFLOW, HPE_CLOSED_CONNECTION, HPE_INVALID_VERSION, HPE_INVALID_STATUS, HPE_INVALID_METHOD, HPE_INVALID_URL, HPE_INVALID_HOST, HPE_INVALID_PORT, HPE_INVALID_PATH, HPE_INVALID_QUERY_STRING, HPE_INVALID_FRAGMENT, HPE_LF_EXPECTED, HPE_INVALID_HEADER_TOKEN, HPE_INVALID_CONTENT_LENGTH, HPE_INVALID_CHUNK_SIZE, HPE_INVALID_CONSTANT, HPE_INVALID_INTERNAL_STATE, HPE_STRICT, HPE_PAUSED, HPE_UNKNOWN enum flags: F_CHUNKED, F_CONNECTION_KEEP_ALIVE, F_CONNECTION_CLOSE, F_CONNECTION_UPGRADE, F_TRAILING, F_UPGRADE, F_SKIPBODY, F_CONTENTLENGTH enum http_method: DELETE, GET, HEAD, POST, PUT, CONNECT, OPTIONS, TRACE, COPY, LOCK, MKCOL, MOVE, PROPFIND, PROPPATCH, SEARCH, UNLOCK, BIND, REBIND, UNBIND, ACL, REPORT, MKACTIVITY, CHECKOUT, MERGE, MSEARCH, NOTIFY, SUBSCRIBE, UNSUBSCRIBE, PATCH, PURGE, MKCALENDAR, LINK, UNLINK void http_parser_init(http_parser *parser, http_parser_type type) size_t http_parser_execute(http_parser *parser, const http_parser_settings *settings, const char *data, size_t len) int http_should_keep_alive(const http_parser *parser) void http_parser_settings_init(http_parser_settings *settings) const char *http_errno_name(http_errno err) const char *http_errno_description(http_errno err) const char *http_method_str(http_method m) # URL Parser enum http_parser_url_fields: UF_SCHEMA = 0, UF_HOST = 1, UF_PORT = 2, UF_PATH = 3, UF_QUERY = 4, UF_FRAGMENT = 5, UF_USERINFO = 6, UF_MAX = 7 struct http_parser_url_field_data: uint16_t off uint16_t len struct http_parser_url: uint16_t field_set uint16_t port http_parser_url_field_data[<int>UF_MAX] field_data void http_parser_url_init(http_parser_url *u) int http_parser_parse_url(const char *buf, size_t buflen, int is_connect, http_parser_url *u)
Upload File
Create Folder