netwerk/build changes for bug 15860 "digest auth" r=dougt, sr=rpotts

git-svn-id: svn://10.0.0.236/trunk@109697 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
darin%netscape.com 2001-12-05 01:09:38 +00:00
parent 5e883b7a4f
commit df49844ca4
4 changed files with 17 additions and 0 deletions

View File

@ -41,6 +41,7 @@ REQUIRES = xpcom \
locale \
intl \
uconv \
caps \
$(ZLIB_REQUIRES) \
$(NULL)

View File

@ -35,6 +35,7 @@ REQUIRES = xpcom \
intl \
uconv \
zlib \
caps \
$(NULL)
include <$(DEPTH)/config/config.mak>

View File

@ -306,6 +306,13 @@
{0x83, 0xcf, 0x09, 0x09, 0xe1, 0x8a, 0x09, 0x3a} \
}
#define NS_HTTPDIGESTAUTH_CID \
{ /* 17491ba4-1dd2-11b2-aae3-de6b92dab620 */ \
0x17491ba4, \
0x1dd2, \
0x11b2, \
{0xaa, 0xe3, 0xde, 0x6b, 0x92, 0xda, 0xb6, 0x20} \
}
/******************************************************************************
* netwerk/protocol/res/ classes

View File

@ -113,6 +113,9 @@ NS_GENERIC_FACTORY_CONSTRUCTOR(nsStorageTransport)
#include "nsHttpBasicAuth.h"
NS_GENERIC_FACTORY_CONSTRUCTOR(nsHttpBasicAuth)
#include "nsHttpDigestAuth.h"
NS_GENERIC_FACTORY_CONSTRUCTOR(nsHttpDigestAuth)
///////////////////////////////////////////////////////////////////////////////
#include "nsResProtocolHandler.h"
@ -912,6 +915,11 @@ static nsModuleComponentInfo gNetModuleInfo[] = {
NS_HTTP_AUTHENTICATOR_CONTRACTID_PREFIX "basic",
nsHttpBasicAuthConstructor },
{ "HTTP Digest Auth Encoder",
NS_HTTPDIGESTAUTH_CID,
NS_HTTP_AUTHENTICATOR_CONTRACTID_PREFIX "digest",
nsHttpDigestAuthConstructor },
// from netwerk/protocol/data:
{ "Data Protocol Handler",
NS_DATAHANDLER_CID,