summaryrefslogtreecommitdiffstats
path: root/src/net
diff options
context:
space:
mode:
authorMichael Brown2011-06-24 19:11:12 +0200
committerMichael Brown2011-06-28 15:45:07 +0200
commit0cc03ac76a6c636d77cecca21d045ffb87f4945b (patch)
treee957d8f76cf9d56a373772de77c92452456a6a79 /src/net
parent[fc] Send xfer_window_changed() when FCP link is established (diff)
downloadipxe-0cc03ac76a6c636d77cecca21d045ffb87f4945b.tar.gz
ipxe-0cc03ac76a6c636d77cecca21d045ffb87f4945b.tar.xz
ipxe-0cc03ac76a6c636d77cecca21d045ffb87f4945b.zip
[tls] Send xfer_window_changed() when TLS session is established
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/net')
-rw-r--r--src/net/tls.c4
1 files changed, 4 insertions, 0 deletions
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;
}