From: Michael Brown Date: Fri, 24 Jun 2011 17:11:12 +0000 (+0100) Subject: [tls] Send xfer_window_changed() when TLS session is established X-Git-Tag: v1.20.1~2111 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0cc03ac76a6c636d77cecca21d045ffb87f4945b;p=thirdparty%2Fipxe.git [tls] Send xfer_window_changed() when TLS session is established Signed-off-by: Michael Brown --- diff --git a/src/net/tls.c b/src/net/tls.c index 5e22221d2..fba5160d2 100644 --- a/src/net/tls.c +++ b/src/net/tls.c @@ -949,6 +949,10 @@ static int tls_new_finished ( struct tls_session *tls, tls->tx_state = TLS_TX_DATA; ( void ) data; ( void ) len; + + /* Send notification of a window change */ + xfer_window_changed ( &tls->plainstream ); + return 0; }