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