diff --git a/src/net/tcp/httpcore.c b/src/net/tcp/httpcore.c index ce53a212..4a1300cd 100644 --- a/src/net/tcp/httpcore.c +++ b/src/net/tcp/httpcore.c @@ -352,6 +352,9 @@ static void http_step ( struct http_transaction *http ) { if ( ! xfer_window ( &http->conn ) ) return; + /* Notify data transfer interface that window may have changed */ + xfer_window_changed ( &http->xfer ); + /* Do nothing until data transfer interface is ready */ if ( ! xfer_window ( &http->xfer ) ) return;