Changeset 112 for Mulberry/branches/v4.1d1/Sources_Common/HTTP/HTTPClient/CHTTPAuthorizationDigest.h
- Timestamp:
- 10/28/07 23:38:23 (1 year ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
Mulberry/branches/v4.1d1/Sources_Common/HTTP/HTTPClient/CHTTPAuthorizationDigest.h
r19 r112 41 41 mClientCount = 0; 42 42 } 43 CHTTPAuthorizationDigest(const cdstring& user, const cdstring& pswd, const cdstr ing& www_authenticate)43 CHTTPAuthorizationDigest(const cdstring& user, const cdstring& pswd, const cdstrvect& www_authenticate) 44 44 { 45 45 mUser = user; … … 51 51 virtual ~CHTTPAuthorizationDigest() {} 52 52 53 void SetDetails(const cdstring& user, const cdstring& pswd, const cdstr ing& www_authenticate)53 void SetDetails(const cdstring& user, const cdstring& pswd, const cdstrvect& www_authenticate) 54 54 { 55 55 mUser = user; … … 76 76 cdstring mResponse; 77 77 78 void ParseAuthenticateHeader(const cdstr ing& auth);78 void ParseAuthenticateHeader(const cdstrvect& hdrs); 79 79 void GenerateResponse(const CHTTPRequestResponse* request); 80 80 };