diff options
author | cbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-27 17:35:02 +0000 |
---|---|---|
committer | cbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-27 17:35:02 +0000 |
commit | d201b200e947d18ede55706197c62dbaeace8d5f (patch) | |
tree | 7413f58244f2c7eb3352284411f3b72a8287442d /net/http/http_auth_handler_negotiate.h | |
parent | c58030205f55b793ec6cedbaa1967ccc4a9f3465 (diff) | |
download | chromium_src-d201b200e947d18ede55706197c62dbaeace8d5f.zip chromium_src-d201b200e947d18ede55706197c62dbaeace8d5f.tar.gz chromium_src-d201b200e947d18ede55706197c62dbaeace8d5f.tar.bz2 |
Add support for delegated kerberos tickets to Negotiate authentication.
This is controlled by the --auth-negotiate-delegate-whitelist command line. By default no servers are delegated to.
BUG=50076
TEST=net_unittests, go to an IIS server specified in --auth-negotiate-delegate-whitelist and see if this works correctly.
Review URL: http://codereview.chromium.org/3155046
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57695 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_auth_handler_negotiate.h')
-rw-r--r-- | net/http/http_auth_handler_negotiate.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/http/http_auth_handler_negotiate.h b/net/http/http_auth_handler_negotiate.h index 005e665..ca9a577 100644 --- a/net/http/http_auth_handler_negotiate.h +++ b/net/http/http_auth_handler_negotiate.h @@ -141,6 +141,7 @@ class HttpAuthHandlerNegotiate : public HttpAuthHandler { int DoResolveCanonicalNameComplete(int rv); int DoGenerateAuthToken(); int DoGenerateAuthTokenComplete(int rv); + bool CanDelegate() const; AuthSystem auth_system_; bool disable_cname_lookup_; @@ -165,7 +166,7 @@ class HttpAuthHandlerNegotiate : public HttpAuthHandler { State next_state_; - URLSecurityManager* url_security_manager_; + const URLSecurityManager* url_security_manager_; }; } // namespace net |