Skip to content

Commit

Permalink
* src/ne_session.h, macros/neon.m4: Comment updates only.
Browse files Browse the repository at this point in the history
  • Loading branch information
notroj committed Nov 21, 2024
1 parent 1d08ff4 commit 7bd3047
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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()
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion macros/neon.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions src/ne_session.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 7bd3047

Please sign in to comment.