]> git.ipfire.org Git - thirdparty/squid.git/blob - src/auth/negotiate/User.cc
merge from trunk
[thirdparty/squid.git] / src / auth / negotiate / User.cc
1 #include "squid.h"
2 #include "auth/Config.h"
3 #include "auth/negotiate/User.h"
4 #include "Debug.h"
5
6 Auth::Negotiate::User::User(Auth::Config *aConfig, const char *aRequestRealm) :
7 Auth::User(aConfig, aRequestRealm)
8 {
9 proxy_auth_list.head = proxy_auth_list.tail = NULL;
10 }
11
12 Auth::Negotiate::User::~User()
13 {
14 debugs(29, 5, HERE << "doing nothing to clear Negotiate scheme data for '" << this << "'");
15 }
16
17 int32_t
18 Auth::Negotiate::User::ttl() const
19 {
20 return -1; // Negotiate cannot be cached.
21 }