1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Bug #29579 Clients using SSL can hang the server

Added an option to yassl to allow "quiet shutdown" like openssl does. This option causes the SSL libs to NOT perform the close_notify handshake during shutdown. This fixes a hang we experience because we hold a lock during socket shutdown.
This commit is contained in:
dkatz@damien-katzs-computer.local
2007-07-12 22:06:33 -04:00
parent b36295dd17
commit 899aaa6bb2
9 changed files with 234 additions and 19 deletions

View File

@@ -0,0 +1,3 @@
DROP TABLE IF EXISTS t1, t2;
create table t1 (a int);
drop table t1;