From 531aca28103063dc75066346ee2a1e2bc2272218 Mon Sep 17 00:00:00 2001 From: David Horstmann Date: Thu, 29 Feb 2024 18:14:28 +0000 Subject: [PATCH] Fix missing fields in ssl session struct comment The endpoint and version were factorized out into the main session. Update the session struct comment to reflect these new fields, as was previously missed. Signed-off-by: David Horstmann --- library/ssl_tls.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/library/ssl_tls.c b/library/ssl_tls.c index c56df86ddf..42bf670fda 100644 --- a/library/ssl_tls.c +++ b/library/ssl_tls.c @@ -4180,6 +4180,8 @@ static const unsigned char ssl_serialized_session_header[] = { * uint8_t minor_ver; // Protocol minor version. Possible values: * // - TLS 1.2 (0x0303) * // - TLS 1.3 (0x0304) + * uint8_t endpoint; + * uint16_t ciphersuite; * * select (serialized_session.tls_version) { *