Minor updates

Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/23360)
This commit is contained in:
Hugo Landau 2024-02-07 12:43:02 +00:00
parent 99a5cfc13a
commit 01690a7ff3
2 changed files with 4 additions and 1 deletions

View File

@ -130,6 +130,9 @@ milliseconds, where 0 represents a lack of an idle timeout. This feature can
only be configured prior to connection establishment and cannot be subsequently
changed.
This release of OpenSSL uses a default value of 30 seconds. This default value
may change between releases of OpenSSL.
=item B<SSL_VALUE_QUIC_STREAM_BIDI_LOCAL_AVAIL>
Generic read-only statistical value. The number of bidirectional,

View File

@ -2376,7 +2376,7 @@ __owur int SSL_get_conn_close_info(SSL *ssl,
# define SSL_VALUE_QUIC_STREAM_BIDI_REMOTE_AVAIL 2
# define SSL_VALUE_QUIC_STREAM_UNI_LOCAL_AVAIL 3
# define SSL_VALUE_QUIC_STREAM_UNI_REMOTE_AVAIL 4
# define SSL_VALUE_QUIC_IDLE_TIMEOUT 0x8000
# define SSL_VALUE_QUIC_IDLE_TIMEOUT 5
int SSL_get_value_uint(SSL *s, uint32_t class_, uint32_t id, uint64_t *v);
int SSL_set_value_uint(SSL *s, uint32_t class_, uint32_t id, uint64_t v);