Show
Ignore:
Timestamp:
10/28/07 23:38:23 (1 year ago)
Author:
daboo
Message:

Fix digest.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Mulberry/branches/v4.1d1/Sources_Common/HTTP/HTTPClient/CHTTPAuthorizationDigest.h

    r19 r112  
    4141                mClientCount = 0; 
    4242        } 
    43         CHTTPAuthorizationDigest(const cdstring& user, const cdstring& pswd, const cdstring& www_authenticate) 
     43        CHTTPAuthorizationDigest(const cdstring& user, const cdstring& pswd, const cdstrvect& www_authenticate) 
    4444        { 
    4545                mUser = user; 
     
    5151        virtual ~CHTTPAuthorizationDigest() {} 
    5252 
    53         void SetDetails(const cdstring& user, const cdstring& pswd, const cdstring& www_authenticate) 
     53        void SetDetails(const cdstring& user, const cdstring& pswd, const cdstrvect& www_authenticate) 
    5454        { 
    5555                mUser = user; 
     
    7676        cdstring                mResponse; 
    7777 
    78         void ParseAuthenticateHeader(const cdstring& auth); 
     78        void ParseAuthenticateHeader(const cdstrvect& hdrs); 
    7979        void GenerateResponse(const CHTTPRequestResponse* request); 
    8080};