diff options
author | tb <> | 2019-11-17 18:42:17 +0000 |
---|---|---|
committer | tb <> | 2019-11-17 18:42:17 +0000 |
commit | f27565e2fca9e66b5ba88b8f48a25a26acd61f88 (patch) | |
tree | 296d46b0aec3deee689105f79e5a9cdf1df6e3ba | |
parent | 04ffdc947bb92e60658bb1fc09ad47e3d426fb1b (diff) | |
download | openbsd-f27565e2fca9e66b5ba88b8f48a25a26acd61f88.tar.gz openbsd-f27565e2fca9e66b5ba88b8f48a25a26acd61f88.tar.bz2 openbsd-f27565e2fca9e66b5ba88b8f48a25a26acd61f88.zip |
Add a reference for the non-standard post-handshake handshake (PHH).
ok beck, jsing
-rw-r--r-- | src/lib/libssl/tls13_record_layer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/tls13_record_layer.c b/src/lib/libssl/tls13_record_layer.c index 5487e005e4..9458024ef3 100644 --- a/src/lib/libssl/tls13_record_layer.c +++ b/src/lib/libssl/tls13_record_layer.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: tls13_record_layer.c,v 1.12 2019/11/17 18:27:16 jsing Exp $ */ | 1 | /* $OpenBSD: tls13_record_layer.c,v 1.13 2019/11/17 18:42:17 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org> |
4 | * | 4 | * |
@@ -51,7 +51,7 @@ struct tls13_record_layer { | |||
51 | uint8_t *alert_data; | 51 | uint8_t *alert_data; |
52 | size_t alert_len; | 52 | size_t alert_len; |
53 | 53 | ||
54 | /* Pending post-handshake handshake messages. */ | 54 | /* Pending post-handshake handshake messages (RFC 8446, section 4.6). */ |
55 | CBS phh_cbs; | 55 | CBS phh_cbs; |
56 | uint8_t *phh_data; | 56 | uint8_t *phh_data; |
57 | size_t phh_len; | 57 | size_t phh_len; |