Hackfut Security File Manager
Current Path:
/opt/alt/php80/usr/include/php/ext/swoole/include
opt
/
alt
/
php80
/
usr
/
include
/
php
/
ext
/
swoole
/
include
/
📁
..
📄
swoole.h
(19.76 KB)
📄
swoole_api.h
(2.98 KB)
📄
swoole_asm_context.h
(1.47 KB)
📄
swoole_async.h
(2.46 KB)
📄
swoole_atomic.h
(2.39 KB)
📄
swoole_base64.h
(1.29 KB)
📄
swoole_buffer.h
(2.17 KB)
📄
swoole_c_api.h
(1.92 KB)
📄
swoole_channel.h
(2.36 KB)
📄
swoole_client.h
(8.37 KB)
📄
swoole_config.h
(9.22 KB)
📄
swoole_coroutine.h
(6.34 KB)
📄
swoole_coroutine_c_api.h
(4.4 KB)
📄
swoole_coroutine_channel.h
(4.04 KB)
📄
swoole_coroutine_context.h
(2.41 KB)
📄
swoole_coroutine_socket.h
(17.95 KB)
📄
swoole_coroutine_system.h
(3.05 KB)
📄
swoole_dtls.h
(2.42 KB)
📄
swoole_error.h
(4.83 KB)
📄
swoole_file.h
(4.04 KB)
📄
swoole_file_hook.h
(2.58 KB)
📄
swoole_hash.h
(9.69 KB)
📄
swoole_heap.h
(1.79 KB)
📄
swoole_http.h
(4.68 KB)
📄
swoole_http2.h
(8 KB)
📄
swoole_lock.h
(2.62 KB)
📄
swoole_log.h
(15.53 KB)
📄
swoole_lru_cache.h
(3.2 KB)
📄
swoole_memory.h
(2.59 KB)
📄
swoole_mime_type.h
(1.44 KB)
📄
swoole_mqtt.h
(2.11 KB)
📄
swoole_msg_queue.h
(1.84 KB)
📄
swoole_pipe.h
(2.64 KB)
📄
swoole_process_pool.h
(6.55 KB)
📄
swoole_protocol.h
(5 KB)
📄
swoole_proxy.h
(2.13 KB)
📄
swoole_reactor.h
(10.75 KB)
📄
swoole_redis.h
(2.18 KB)
📄
swoole_server.h
(34.08 KB)
📄
swoole_signal.h
(1.55 KB)
📄
swoole_socket.h
(16.21 KB)
📄
swoole_socket_hook.h
(2.12 KB)
📄
swoole_ssl.h
(4.47 KB)
📄
swoole_static_handler.h
(2.8 KB)
📄
swoole_string.h
(7.1 KB)
📄
swoole_table.h
(5.84 KB)
📄
swoole_timer.h
(4.08 KB)
📄
swoole_util.h
(4.31 KB)
📄
swoole_version.h
(2.21 KB)
📄
swoole_websocket.h
(5.07 KB)
📄
swoole_wheel_timer.h
(2.48 KB)
Editing: swoole_http.h
/* +----------------------------------------------------------------------+ | Swoole | +----------------------------------------------------------------------+ | This source file is subject to version 2.0 of the Apache license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.apache.org/licenses/LICENSE-2.0.html | | If you did not receive a copy of the Apache2.0 license and are unable| | to obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Author: Tianfeng Han <mikan.tenny@gmail.com> | +----------------------------------------------------------------------+ */ #pragma once #include "swoole.h" enum swHttp_version { SW_HTTP_VERSION_10 = 1, SW_HTTP_VERSION_11, SW_HTTP_VERSION_2, SW_HTTP_VERSION_3, }; enum swHttp_method { SW_HTTP_DELETE = 1, SW_HTTP_GET, SW_HTTP_HEAD, SW_HTTP_POST, SW_HTTP_PUT, SW_HTTP_PATCH, /* pathological */ SW_HTTP_CONNECT, SW_HTTP_OPTIONS, SW_HTTP_TRACE, /* webdav */ SW_HTTP_COPY, SW_HTTP_LOCK, SW_HTTP_MKCOL, SW_HTTP_MOVE, SW_HTTP_PROPFIND, SW_HTTP_PROPPATCH, SW_HTTP_UNLOCK, /* subversion */ SW_HTTP_REPORT, SW_HTTP_MKACTIVITY, SW_HTTP_CHECKOUT, SW_HTTP_MERGE, /* upnp */ SW_HTTP_MSEARCH, SW_HTTP_NOTIFY, SW_HTTP_SUBSCRIBE, SW_HTTP_UNSUBSCRIBE, /* proxy */ SW_HTTP_PURGE, /* Http2 */ SW_HTTP_PRI, }; enum swHttp_status_code { SW_HTTP_CONTINUE = 100, SW_HTTP_SWITCHING_PROTOCOLS = 101, SW_HTTP_PROCESSING = 102, SW_HTTP_OK = 200, SW_HTTP_CREATED = 201, SW_HTTP_ACCEPTED = 202, SW_HTTP_NO_CONTENT = 204, SW_HTTP_PARTIAL_CONTENT = 206, SW_HTTP_SPECIAL_RESPONSE = 300, SW_HTTP_MOVED_PERMANENTLY = 301, SW_HTTP_MOVED_TEMPORARILY = 302, SW_HTTP_SEE_OTHER = 303, SW_HTTP_NOT_MODIFIED = 304, SW_HTTP_TEMPORARY_REDIRECT = 307, SW_HTTP_PERMANENT_REDIRECT = 308, SW_HTTP_BAD_REQUEST = 400, SW_HTTP_UNAUTHORIZED = 401, SW_HTTP_FORBIDDEN = 403, SW_HTTP_NOT_FOUND = 404, SW_HTTP_NOT_ALLOWED = 405, SW_HTTP_REQUEST_TIME_OUT = 408, SW_HTTP_CONFLICT = 409, SW_HTTP_LENGTH_REQUIRED = 411, SW_HTTP_PRECONDITION_FAILED = 412, SW_HTTP_REQUEST_ENTITY_TOO_LARGE = 413, SW_HTTP_REQUEST_URI_TOO_LARGE = 414, SW_HTTP_UNSUPPORTED_MEDIA_TYPE = 415, SW_HTTP_RANGE_NOT_SATISFIABLE = 416, SW_HTTP_MISDIRECTED_REQUEST = 421, SW_HTTP_TOO_MANY_REQUESTS = 429, SW_HTTP_INTERNAL_SERVER_ERROR = 500, SW_HTTP_NOT_IMPLEMENTED = 501, SW_HTTP_BAD_GATEWAY = 502, SW_HTTP_SERVICE_UNAVAILABLE = 503, SW_HTTP_GATEWAY_TIME_OUT = 504, SW_HTTP_VERSION_NOT_SUPPORTED = 505, SW_HTTP_INSUFFICIENT_STORAGE = 507 }; namespace swoole { namespace http_server { //----------------------------------------------------------------- struct Request { public: uint8_t method; uint8_t version; uchar excepted : 1; uchar header_parsed : 1; uchar tried_to_dispatch : 1; uchar known_length : 1; uchar keep_alive : 1; uchar chunked : 1; uchar nobody_chunked : 1; uint32_t url_offset_; uint32_t url_length_; uint32_t request_line_length_; /* without \r\n */ uint32_t header_length_; /* include request_line_length + \r\n */ uint32_t content_length_; swString *buffer_; public: Request() { clean(); buffer_ = nullptr; } inline void clean() { memset(this, 0, offsetof(Request, buffer_)); } int get_protocol(); int get_header_length(); int get_chunked_body_length(); void parse_header_info(); std::string get_date_if_modified_since(); #ifdef SW_HTTP_100_CONTINUE bool has_expect_header(); #endif }; //----------------------------------------------------------------- } // namespace http } // namespace swoole int swHttp_get_method(const char *method_str, size_t method_len); const char *swHttp_get_method_string(int method); const char *swHttp_get_status_message(int code); size_t swHttp_url_decode(char *str, size_t len); char *swHttp_url_encode(char const *str, size_t len); #ifdef SW_USE_HTTP2 ssize_t swHttpMix_get_package_length(swProtocol *protocol, swSocket *conn, const char *data, uint32_t length); uint8_t swHttpMix_get_package_length_size(swSocket *conn); int swHttpMix_dispatch_frame(swProtocol *protocol, swSocket *conn, const char *data, uint32_t length); #endif
Upload File
Create Folder