diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2019-11-17 18:42:18 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2019-11-17 18:42:18 +0000 |
commit | a21e8be54c9d8188eb558b84bb1973d9b7380560 (patch) | |
tree | 473885344c3da4a3548531147849373d9aea5a4f /lib | |
parent | f52a3249efb9afc5d94e1682e14fdb0b5b1103a3 (diff) |
Add a reference for the non-standard post-handshake handshake (PHH).
ok beck, jsing
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/tls13_record_layer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/tls13_record_layer.c b/lib/libssl/tls13_record_layer.c index 5487e005e47..9458024ef33 100644 --- a/lib/libssl/tls13_record_layer.c +++ b/lib/libssl/tls13_record_layer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tls13_record_layer.c,v 1.12 2019/11/17 18:27:16 jsing Exp $ */ +/* $OpenBSD: tls13_record_layer.c,v 1.13 2019/11/17 18:42:17 tb Exp $ */ /* * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org> * @@ -51,7 +51,7 @@ struct tls13_record_layer { uint8_t *alert_data; size_t alert_len; - /* Pending post-handshake handshake messages. */ + /* Pending post-handshake handshake messages (RFC 8446, section 4.6). */ CBS phh_cbs; uint8_t *phh_data; size_t phh_len; |