1=pod
2
3=head1 NAME
4
5OSSL_QUIC_client_method, OSSL_QUIC_client_thread_method
6- Provide SSL_METHOD objects for QUIC enabled functions
7
8=head1 SYNOPSIS
9
10 #include <openssl/quic.h>
11
12 const SSL_METHOD *OSSL_QUIC_client_method(void);
13 const SSL_METHOD *OSSL_QUIC_client_thread_method(void);
14
15=head1 DESCRIPTION
16
17The OSSL_QUIC_client_method(), OSSL_QUIC_client_thread_method(), and
18OSSL_QUIC_server_method() functions provide methods for the
19L<SSL_CTX_new_ex(3)> function to provide QUIC protocol support.
20
21The OSSL_QUIC_client_thread_method() uses threads to allow for a blocking
22mode of operation and avoid the need to return control to the
23OpenSSL library for processing time based events.
24The OSSL_QUIC_client_method() does not use threads and depends on
25nonblocking mode of operation and the application periodically calling SSL
26functions.
27
28=head1 RETURN VALUES
29
30These functions return pointers to the constant method objects.
31
32=head1 SEE ALSO
33
34L<SSL_CTX_new_ex(3)>
35
36=head1 HISTORY
37
38OSSL_QUIC_client_method() and OSSL_QUIC_client_thread_method() were added in
39OpenSSL 3.2.
40
41=head1 COPYRIGHT
42
43Copyright 2022-2023 The OpenSSL Project Authors. All Rights Reserved.
44
45Licensed under the Apache License 2.0 (the "License").  You may not use
46this file except in compliance with the License.  You can obtain a copy
47in the file LICENSE in the source distribution or at
48L<https://www.openssl.org/source/license.html>.
49
50=cut
51