diff options
author | Michael Brown <mcb30@ipxe.org> | 2023-03-30 16:28:40 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2023-03-30 23:38:43 +0100 |
commit | 1d1cf74a5e58811822bee4b3da3cff7282fcdfca (patch) | |
tree | 6b975a1a33bb9a89d8519f6f17eac2c2e2e697ae /src/include | |
parent | aa368ba529e13f07658e16507eb8686ef1c07423 (diff) | |
download | ipxe-1d1cf74a5e58811822bee4b3da3cff7282fcdfca.tar.gz |
[tls] Handle fragmented handshake records
Originally-implemented-by: Christopher Schenk <christopher@cschenk.net>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/ipxe/tls.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/ipxe/tls.h b/src/include/ipxe/tls.h index 99c7be019..30bb1c483 100644 --- a/src/include/ipxe/tls.h +++ b/src/include/ipxe/tls.h @@ -398,6 +398,8 @@ struct tls_connection { struct io_buffer rx_header_iobuf; /** List of received data buffers */ struct list_head rx_data; + /** Received handshake fragment */ + struct io_buffer *rx_handshake; }; /** RX I/O buffer size |