CVSROOT: /cvs Module name: src Changes by: js...@cvs.openbsd.org 2020/05/29 11:54:59
Modified files: lib/libssl : tls13_record_layer.c Log message: Handle the case where we receive a valid 0 byte application data record. In this situation we cannot return zero bytes, as that signals EOF. Rather we need to return TLS13_IO_WANT_POLLIN so tell the caller to call us again, at which point we'll pull up the next record. ok tb@