Home | History | Annotate | Line # | Download | only in quic
      1      1.1  christos /*
      2      1.1  christos  * Copyright 2022-2025 The OpenSSL Project Authors. All Rights Reserved.
      3      1.1  christos  *
      4      1.1  christos  * Licensed under the Apache License 2.0 (the "License").  You may not use
      5      1.1  christos  * this file except in compliance with the License.  You can obtain a copy
      6      1.1  christos  * in the file LICENSE in the source distribution or at
      7      1.1  christos  * https://www.openssl.org/source/license.html
      8      1.1  christos  */
      9      1.1  christos 
     10      1.1  christos #include <openssl/macros.h>
     11      1.1  christos #include <openssl/objects.h>
     12      1.1  christos #include "quic_local.h"
     13      1.1  christos 
     14      1.1  christos IMPLEMENT_quic_meth_func(OSSL_QUIC_ANY_VERSION,
     15  1.1.1.2  christos     OSSL_QUIC_client_method,
     16  1.1.1.2  christos     ssl_undefined_function,
     17  1.1.1.2  christos     ossl_quic_connect, ssl3_undef_enc_method)
     18      1.1  christos 
     19      1.1  christos IMPLEMENT_quic_meth_func(OSSL_QUIC_ANY_VERSION,
     20  1.1.1.2  christos     OSSL_QUIC_client_thread_method,
     21  1.1.1.2  christos     ssl_undefined_function,
     22  1.1.1.2  christos     ossl_quic_connect, ssl3_undef_enc_method)
     23      1.1  christos 
     24      1.1  christos IMPLEMENT_quic_meth_func(OSSL_QUIC_ANY_VERSION,
     25  1.1.1.2  christos     OSSL_QUIC_server_method,
     26  1.1.1.2  christos     ossl_quic_accept,
     27  1.1.1.2  christos     ssl_undefined_function, ssl3_undef_enc_method)
     28