CVSROOT: /cvs Module name: src Changes by: js...@cvs.openbsd.org 2022/11/11 10:15:27
Modified files: lib/libssl : d1_lib.c d1_pkt.c dtls_locl.h s3_lib.c ssl_locl.h ssl_pkt.c tls12_record_layer.c tls13_record_layer.c tls_content.c tls_content.h Log message: Convert the legacy TLS stack to tls_content. This converts the legacy TLS stack to tls_content - records are now opened into a tls_content structure, rather than being written back into the same buffer that the sealed record was read into. This will allow for further clean up of the legacy record layer. ok tb@