From 14fa00e3fe1ca61fcc546ee18976ec23fbe62d74 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Mon, 17 Mar 2014 23:21:53 +0100 Subject: [PATCH] Write pending data after connecting fixes issues with incoming writes before the ssl negotiation is complete Signed-off-by: Felix Fietkau --- ustream-ssl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ustream-ssl.c b/ustream-ssl.c index 4526db0..346a53f 100644 --- a/ustream-ssl.c +++ b/ustream-ssl.c @@ -41,6 +41,7 @@ static void ustream_ssl_check_conn(struct ustream_ssl *us) us->connected = true; if (us->notify_connected) us->notify_connected(us); + ustream_write_pending(&us->stream); } } -- 2.11.0