From: Hugo Landau Date: Wed, 7 Feb 2024 12:43:02 +0000 (+0000) Subject: Minor updates X-Git-Tag: openssl-3.3.0-alpha1~142 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=01690a7ff36c4d18c48b301cdf375c954105a1d9;p=thirdparty%2Fopenssl.git Minor updates Reviewed-by: Neil Horman Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/23360) --- diff --git a/doc/man3/SSL_get_value_uint.pod b/doc/man3/SSL_get_value_uint.pod index 4d342ceebbf..55025591784 100644 --- a/doc/man3/SSL_get_value_uint.pod +++ b/doc/man3/SSL_get_value_uint.pod @@ -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 Generic read-only statistical value. The number of bidirectional, diff --git a/include/openssl/ssl.h.in b/include/openssl/ssl.h.in index 9855a3836c8..6b54658b4f5 100644 --- a/include/openssl/ssl.h.in +++ b/include/openssl/ssl.h.in @@ -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);