This commit is contained in:
valeski%netscape.com 1999-06-03 20:05:22 +00:00
Родитель 4a6e379644
Коммит e54a53f007
1 изменённых файлов: 13 добавлений и 3 удалений

Просмотреть файл

@ -204,15 +204,25 @@ nsHTTPConnection::Open(void)
nsnull,
nsIProxyObjectManager::GetIID(),
(void**)&proxyObjectManager);
nsNetModuleEntry *entry = nsnull;
nsINetModuleRegEntry *entry = nsnull;
pModules->First(&entry);
while (NS_SUCCEEDED(ret)) {
// send the SetHeaders event to each registered module,
// using the nsISupports Proxy service
nsIHttpNotify *pNotify = nsnull;
nsCID lCID;
nsIEventQueue* lEventQ = nsnull;
ret = entry->GetmCID(&lCID);
if (NS_FAILED(ret))
return ret;
ret = entry->GetmEventQ(&lEventQ);
if (NS_FAILED(ret))
return ret;
ret = proxyObjectManager->GetProxyObject(entry->mEventQ,
kCookieModuleCID,
ret = proxyObjectManager->GetProxyObject(lEventQ,
lCID,
nsnull,
nsIHttpNotify::GetIID(),
(void**)&nsIHttpNotify);