Path: blob/main/crypto/openssl/ssl/quic/quic_method.c
48266 views
/*1* Copyright 2022-2025 The OpenSSL Project Authors. All Rights Reserved.2*3* Licensed under the Apache License 2.0 (the "License"). You may not use4* this file except in compliance with the License. You can obtain a copy5* in the file LICENSE in the source distribution or at6* https://www.openssl.org/source/license.html7*/89#include <openssl/macros.h>10#include <openssl/objects.h>11#include "quic_local.h"1213IMPLEMENT_quic_meth_func(OSSL_QUIC_ANY_VERSION,14OSSL_QUIC_client_method,15ssl_undefined_function,16ossl_quic_connect, ssl3_undef_enc_method)1718IMPLEMENT_quic_meth_func(OSSL_QUIC_ANY_VERSION,19OSSL_QUIC_client_thread_method,20ssl_undefined_function,21ossl_quic_connect, ssl3_undef_enc_method)2223IMPLEMENT_quic_meth_func(OSSL_QUIC_ANY_VERSION,24OSSL_QUIC_server_method,25ossl_quic_accept,26ssl_undefined_function, ssl3_undef_enc_method)272829