1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

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 <david.horstmann@arm.com>
This commit is contained in:
David Horstmann
2024-02-29 18:14:28 +00:00
parent cb01b361e1
commit 531aca2810

View File

@ -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) {
*