Turned off the load_background flag when loading URLs... This allows netlib to produce more status information which gets pushed out of nsIStreamListener::OnProgress(...)

git-svn-id: svn://10.0.0.236/trunk@2941 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rpotts
1998-06-02 20:17:17 +00:00
parent 59e4679ec9
commit f8991743c8
2 changed files with 8 additions and 2 deletions

View File

@@ -128,7 +128,7 @@ nsresult nsNetlibService::OpenStream(nsIURL *aUrl,
* Mark the URL as background loading. This prevents many
* client upcall notifications...
*/
URL_s->load_background = TRUE;
URL_s->load_background = FALSE;
/*
* Attach the Data Consumer to the URL_Struct.
@@ -211,7 +211,7 @@ nsresult nsNetlibService::OpenBlockingStream(nsIURL *aUrl,
* Mark the URL as background loading. This prevents many
* client upcall notifications...
*/
URL_s->load_background = TRUE;
URL_s->load_background = FALSE;
/*
* Attach the ConnectionInfo object to the URL_Struct.