implement tls clean close

This commit is contained in:
Jake Hillion 2022-05-24 12:28:59 +01:00
parent 71888d40e7
commit 44380ba5be

View File

@ -56,6 +56,9 @@ pub(crate) fn handler(
} }
} }
tls_conn.send_close_notify();
tls_conn.write_tls(&mut stream).unwrap();
exitcode::OK exitcode::OK
} }