client: flush buffered SSL output when tearing down client ustream
authorJo-Philipp Wich <jo@mein.io>
Tue, 26 Jun 2018 06:35:06 +0000 (08:35 +0200)
committerJo-Philipp Wich <jo@mein.io>
Tue, 26 Jun 2018 10:40:07 +0000 (12:40 +0200)
commit796d42bceed2015bb00309a3bf0f49279b070c19
tree7fb1af7e4a62e22009326424f4d93f085a85b462
parent393b59ef5d1d05fd00e102231e689f646c438582
client: flush buffered SSL output when tearing down client ustream

When the outer SSL ustream triggers a change notification due to
encountering EOF, the inner connection ustream might still have
pending data buffered.

Previously, such a condition led to truncated files delivered by
uhttpd via HTTPS and could be triggered by requesting large resources
via slow network links.

Mitigate the problem by propagating the EOF status indicator from
the outer ustream to the inner one and by deferring the client
connection shutdown until the inner ustream output buffer has been
completely drained.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
client.c