From 7bd304796482549eb17c97d6ce0bc278fb3f7c2a Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Thu, 21 Nov 2024 19:59:49 +0000 Subject: [PATCH] * src/ne_session.h, macros/neon.m4: Comment updates only. --- NEWS | 5 +++-- macros/neon.m4 | 2 +- src/ne_session.h | 8 ++++---- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/NEWS b/NEWS index fe9b375a..10880ad5 100644 --- a/NEWS +++ b/NEWS @@ -1,7 +1,7 @@ Changes in release 0.34.0 * Interface changes: - API and ABI backwards-compatible with 0.27.x and later - - NE_SESSFLAG_SSLv2 is now ignored but kept for ABI/API stability + - NE_SESSFLAG_SSLv2 is now ignored * New interfaces and features: - ne_request.h: add ne_get_response_location(), add ne_get_request_target() @@ -19,9 +19,10 @@ Changes in release 0.34.0 notably stricter in parsing header field line, chunked transfer-coding, status-line. * Bug fixes: - - auth: 'realm' string passed to credentials callback is now + - auth: the 'realm' string passed to credentials callback is now cleaned of non-printable characters. * Documentation & header updates for RFC 9110/9112. +* New NE_MINIMUM_VERSION() autoconf macro for better version handling. Changes in release 0.33.0: * Interface changes: diff --git a/macros/neon.m4 b/macros/neon.m4 index e7c0d7b1..b03b72d4 100644 --- a/macros/neon.m4 +++ b/macros/neon.m4 @@ -140,7 +140,7 @@ NE_VERSION_MINOR=34 NE_VERSION_PATCH=0 NE_VERSION_TAG=-dev -# 0.33.x is backwards-compatible to 0.27.x, so AGE=6 +# 0.34.x is backwards-compatible to 0.27.x, so AGE=7 NE_LIBTOOL_VERSINFO="34:${NE_VERSION_PATCH}:7" NE_DEFINE_VERSIONS diff --git a/src/ne_session.h b/src/ne_session.h index fd6bfdc0..45a9ecea 100644 --- a/src/ne_session.h +++ b/src/ne_session.h @@ -294,10 +294,10 @@ void ne_ssl_trust_default_ca(ne_session *sess); /* Set the minimum and maximum SSL/TLS protocol version for the * session. Either minimum and/or maximum may be specified as - * NE_SSL_PROTO_UNSPEC, in which case no limit is imposed. Defaults of - * the SSL/TLS toolkit Returns non-zero on error if the range is - * invalid, if the range cannot be configured in the SSL/TLS toolkit, - * or if SSL/TLS is not in use for the session. */ + * NE_SSL_PROTO_UNSPEC, in which case no limit is imposed. Returns + * non-zero on error if the range is invalid, if the range cannot be + * configured in the SSL/TLS toolkit, or if SSL/TLS is not in use for + * the session. */ int ne_ssl_set_protovers(ne_session *sess, enum ne_ssl_protocol min, enum ne_ssl_protocol max);