CVSROOT: /cvs Module name: src Changes by: js...@cvs.openbsd.org 2021/06/15 13:09:04
Modified files: lib/libssl : d1_pkt.c Log message: Mop up part of dtls1_dispatch_alert(). The original DTLS code had some strange alert handling code (basically one type of alert included extra data) - a few years later this was "fixed", however the rest of the code was left as is. This means that rather than sending the alert data from send_alert (like ssl3_dispatch_alert() does), we have a local buffer on the stack, which we memset, copy the send_alert bytes into, then send from. ok inoguchi@ tb@