PATH:
opt
/
alt
/
php71
/
usr
/
include
/
php
/
ext
/
swoole
/
include
/* +----------------------------------------------------------------------+ | 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" #ifdef SW_USE_OPENSSL #include <openssl/ssl.h> #include <openssl/bio.h> #include <openssl/err.h> #include <openssl/conf.h> #include <openssl/ossl_typ.h> #include <openssl/crypto.h> #include <openssl/x509.h> #include <openssl/x509v3.h> #include <openssl/rand.h> #if OPENSSL_VERSION_NUMBER >= 0x10100000L #define SW_SUPPORT_DTLS #endif enum swSSL_create_flag { SW_SSL_SERVER = 1, SW_SSL_CLIENT = 2, }; struct swSSL_option { char *cert_file; char *key_file; char *passphrase; char *client_cert_file; #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME uchar disable_tls_host_name : 1; char *tls_host_name; #endif char *cafile; char *capath; uint8_t verify_depth; uchar disable_compress : 1; uchar verify_peer : 1; uchar allow_self_signed : 1; uint32_t protocols; uint8_t create_flag; }; enum swSSL_state { SW_SSL_STATE_HANDSHAKE = 0, SW_SSL_STATE_READY = 1, SW_SSL_STATE_WAIT_STREAM = 2, }; enum swSSL_version { SW_SSL_SSLv2 = 1u << 1, SW_SSL_SSLv3 = 1u << 2, SW_SSL_TLSv1 = 1u << 3, SW_SSL_TLSv1_1 = 1u << 4, SW_SSL_TLSv1_2 = 1u << 5, SW_SSL_TLSv1_3 = 1u << 6, SW_SSL_DTLS = 1u << 7, }; #define SW_SSL_ALL (SW_SSL_SSLv2 | SW_SSL_SSLv3 | SW_SSL_TLSv1 | SW_SSL_TLSv1_1 | SW_SSL_TLSv1_2 | SW_SSL_TLSv1_3) enum swSSL_method { SW_SSLv23_METHOD = 0, SW_SSLv3_METHOD, SW_SSLv3_SERVER_METHOD, SW_SSLv3_CLIENT_METHOD, SW_SSLv23_SERVER_METHOD, SW_SSLv23_CLIENT_METHOD, SW_TLSv1_METHOD, SW_TLSv1_SERVER_METHOD, SW_TLSv1_CLIENT_METHOD, #ifdef TLS1_1_VERSION SW_TLSv1_1_METHOD, SW_TLSv1_1_SERVER_METHOD, SW_TLSv1_1_CLIENT_METHOD, #endif #ifdef TLS1_2_VERSION SW_TLSv1_2_METHOD, SW_TLSv1_2_SERVER_METHOD, SW_TLSv1_2_CLIENT_METHOD, #endif #ifdef SW_SUPPORT_DTLS SW_DTLS_CLIENT_METHOD, SW_DTLS_SERVER_METHOD, #endif }; struct swSSL_config { uchar http : 1; uchar http_v2 : 1; uchar prefer_server_ciphers : 1; uchar session_tickets : 1; uchar stapling : 1; uchar stapling_verify : 1; char *ciphers; char *ecdh_curve; char *session_cache; char *dhparam; }; void swSSL_init(void); void swSSL_init_thread_safety(); int swSSL_server_set_cipher(SSL_CTX *ssl_context, swSSL_config *cfg); void swSSL_server_http_advise(SSL_CTX *ssl_context, swSSL_config *cfg); SSL_CTX *swSSL_get_context(swSSL_option *option); void swSSL_free_context(SSL_CTX *ssl_context); int swSSL_set_client_certificate(SSL_CTX *ctx, const char *cert_file, int depth); int swSSL_set_capath(swSSL_option *cfg, SSL_CTX *ctx); const char *swSSL_get_error(); int swSSL_get_ex_connection_index(); #endif
[-] swoole_protocol.h
[edit]
[-] swoole_version.h
[edit]
[-] swoole_coroutine_context.h
[edit]
[-] swoole_log.h
[edit]
[-] swoole_signal.h
[edit]
[-] swoole_socket_hook.h
[edit]
[-] swoole_channel.h
[edit]
[-] swoole_string.h
[edit]
[-] swoole_pipe.h
[edit]
[-] swoole_lock.h
[edit]
[-] swoole_coroutine_c_api.h
[edit]
[-] swoole_mime_type.h
[edit]
[-] swoole_asm_context.h
[edit]
[-] swoole_coroutine_system.h
[edit]
[-] swoole_timer.h
[edit]
[-] swoole_proxy.h
[edit]
[-] swoole_base64.h
[edit]
[-] swoole_socket.h
[edit]
[-] swoole_error.h
[edit]
[-] swoole_memory.h
[edit]
[-] swoole_dtls.h
[edit]
[-] swoole_coroutine_socket.h
[edit]
[-] swoole_coroutine_channel.h
[edit]
[-] swoole_http.h
[edit]
[-] swoole_table.h
[edit]
[-] swoole_client.h
[edit]
[-] swoole_util.h
[edit]
[-] swoole_redis.h
[edit]
[-] swoole_c_api.h
[edit]
[-] swoole_ssl.h
[edit]
[-] swoole_config.h
[edit]
[-] swoole_msg_queue.h
[edit]
[-] swoole_file.h
[edit]
[-] swoole_api.h
[edit]
[-] swoole_server.h
[edit]
[-] swoole_coroutine.h
[edit]
[-] swoole_reactor.h
[edit]
[-] swoole_async.h
[edit]
[-] swoole_file_hook.h
[edit]
[-] swoole_wheel_timer.h
[edit]
[-] swoole_lru_cache.h
[edit]
[-] swoole_buffer.h
[edit]
[-] swoole.h
[edit]
[-] swoole_mqtt.h
[edit]
[+]
..
[-] swoole_static_handler.h
[edit]
[-] swoole_atomic.h
[edit]
[-] swoole_hash.h
[edit]
[-] swoole_heap.h
[edit]
[-] swoole_process_pool.h
[edit]
[-] swoole_websocket.h
[edit]
[-] swoole_http2.h
[edit]