RAPTOR ONLY CHECKIN

network/module/nsIURL.h
Added Get/Set ReloadType methods so a user can query/set the reload type for the url. The default is normal reload.

network/module/nsURL.cpp
Added support for the new nsIURL interface methods (Get/Set ReloadType).

network/module/nsNetService.cpp
OpenStream and OpenBlockingStream now query the nsIURL for it's reload type before creating the url struct. This way we can control how the url is loaded.


git-svn-id: svn://10.0.0.236/trunk@8210 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
valeski%netscape.com
1998-08-19 23:00:15 +00:00
parent fe7799e863
commit b4d5c7e4ce
3 changed files with 59 additions and 2 deletions

View File

@@ -192,6 +192,7 @@ nsresult nsNetlibService::OpenStream(nsIURL *aUrl,
nsConnectionInfo *pConn;
nsIProtocolConnection *pProtocol;
nsresult result;
NET_ReloadMethod reloadType;
if ((NULL == aConsumer) || (NULL == aUrl)) {
return NS_FALSE;
@@ -213,7 +214,19 @@ nsresult nsNetlibService::OpenStream(nsIURL *aUrl,
}
/* Create the URLStruct... */
URL_s = NET_CreateURLStruct(aUrl->GetSpec(), NET_NORMAL_RELOAD);
/* Set the NET_ReloadMethod to correspond with what we've
* been asked to do.
*
* 0 = nsReload (normal)
* 1 = nsReloadBypassCache
* 2 = nsReloadBypassProxy
*/
if (aUrl->GetReloadType() == 1)
reloadType = NET_SUPER_RELOAD;
else
reloadType = NET_NORMAL_RELOAD;
URL_s = NET_CreateURLStruct(aUrl->GetSpec(), reloadType);
if (NULL == URL_s) {
pConn->Release();
return NS_FALSE;
@@ -289,6 +302,8 @@ nsresult nsNetlibService::OpenBlockingStream(nsIURL *aUrl,
if (NULL != aUrl) {
/* Create the blocking stream... */
pBlockingStream = new nsBlockingStream();
NET_ReloadMethod reloadType;
if (NULL == pBlockingStream) {
goto loser;
}
@@ -315,7 +330,20 @@ nsresult nsNetlibService::OpenBlockingStream(nsIURL *aUrl,
}
/* Create the URLStruct... */
URL_s = NET_CreateURLStruct(aUrl->GetSpec(), NET_NORMAL_RELOAD);
/* Set the NET_ReloadMethod to correspond with what we've
* been asked to do.
*
* 0 = nsReload (normal)
* 1 = nsReloadBypassCache
* 2 = nsReloadBypassProxy
*/
if (aUrl->GetReloadType() == 1)
reloadType = NET_SUPER_RELOAD;
else
reloadType = NET_NORMAL_RELOAD;
URL_s = NET_CreateURLStruct(aUrl->GetSpec(), reloadType);
if (NULL == URL_s) {
pBlockingStream->Release();
pConn->Release();