]> git.ipfire.org Git - thirdparty/squid.git/blob - src/auth/negotiate/User.cc
729fa645c5be22999ca983380bb2dad095f8a43c
[thirdparty/squid.git] / src / auth / negotiate / User.cc
1 #include "config.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) :
7 Auth::User(aConfig)
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 }