| Index: net/http/http_auth_sspi_win.h
|
| ===================================================================
|
| --- net/http/http_auth_sspi_win.h (revision 57541)
|
| +++ net/http/http_auth_sspi_win.h (working copy)
|
| @@ -96,6 +96,11 @@
|
| const std::wstring& spn,
|
| std::string* auth_token);
|
|
|
| + // Delegation is allowed on the Kerberos ticket. This allows certain servers
|
| + // to act as the user, such as an IIS server retrieiving data from a
|
| + // Kerberized MSSQL server.
|
| + void Delegate();
|
| +
|
| private:
|
| int OnFirstRound(const string16* username,
|
| const string16* password);
|
| @@ -116,6 +121,7 @@
|
| ULONG max_token_length_;
|
| CredHandle cred_;
|
| CtxtHandle ctxt_;
|
| + bool can_delegate_;
|
| };
|
|
|
| // Splits |combined| into domain and username.
|
|
|