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