Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*++
Copyright (c) 2000 Microsoft Corporation
Module Name:
logon.h
Abstract:
This interface abstracts a Passport Logon Session.
Author:
Biao Wang (biaow) 01-Oct-2000
--*/
#ifndef LOGON_H
#define LOGON_H
class SESSION;
class LOGON { public: LOGON(SESSION*, DWORD dwParentFlags); virtual ~LOGON(void);
BOOL Open(PCWSTR pwszPartnerInfo); void Close(void);
BOOL SetCredentials( PCWSTR pwszRealm, PCWSTR pwszTarget, PCWSTR pwszSignIn, PCWSTR pwszPassword );
BOOL GetLogonHost( PWSTR pwszHostName, OUT PDWORD pdwHostNameLen ) const;
DWORD Logon(void);
BOOL GetChallengeInfo( HBITMAP** ppBitmap, PBOOL pfPrompt, PWSTR pwszCbText, PDWORD pdwTextLen, PWSTR pwszRealm, DWORD dwMaxRealmLen ) const;
BOOL GetAuthorizationInfo( PWSTR pwszTicket, // e.g. "from-PP = ..."
PDWORD pdwTicketLen, PBOOL pfKeepVerb, // if TRUE, no data will be copied into pwszUrl
PWSTR pwszUrl, // user supplied buffer ...
PDWORD pdwUrlLen // ... and length (will be updated to actual length
// on successful return)
) const;
VOID StatusCallback( IN HINTERNET hInternet, IN DWORD dwInternetStatus, IN LPVOID lpvStatusInformation, IN DWORD dwStatusInformationLength);
protected: void GetCachedCreds( PCWSTR pwszRealm, PCWSTR pwszTarget, PCREDENTIALW** pppCreds, DWORD* pdwCreds );
BOOL DownLoadCoBrandBitmap( PWSTR pwszChallenge );
DWORD Handle401FromDA( HINTERNET hRequest, BOOL fTicketRequest );
DWORD Handle200FromDA( HINTERNET hRequest );
protected:
SESSION* m_pSession;
HINTERNET m_hConnect; BOOL m_fCredsPresent; PWSTR m_pwszSignIn; PWSTR m_pwszPassword; WCHAR m_wNewDAUrl[1024]; PWSTR m_pwszTicketRequest; PWSTR m_pwszAuthInfo; PWSTR m_pwszReturnUrl; // PWSTR m_pwszCbUrl;
BOOL m_fWhistler; HBITMAP* m_pBitmap; BOOL m_fPrompt; WCHAR m_wRealm[128]; WCHAR m_wTimeSkew[16]; PWSTR m_pwszAuthHeader; DWORD m_dwParentFlags;
WCHAR m_wDAHostName[256];
};
#endif // LOGON_H
|