]> git.ipfire.org Git - thirdparty/squid.git/blame - src/auth/ntlm/User.cc
Renamed squid.h to squid-old.h and config.h to squid.h
[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
6Auth::Ntlm::User::User(Auth::Config *aConfig) :
7 Auth::User(aConfig)
8{
9 proxy_auth_list.head = proxy_auth_list.tail = NULL;
10}
11
12Auth::Ntlm::User::~User()
13{
14 debugs(29, 5, HERE << "doing nothing to clear NTLM scheme data for '" << this << "'");
15}
16
17int32_t
18Auth::Ntlm::User::ttl() const
19{
20 return -1; // NTLM credentials cannot be cached.
21}