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