]> git.ipfire.org Git - thirdparty/squid.git/blame - src/auth/ntlm/User.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / auth / ntlm / User.cc
CommitLineData
bbc27441 1/*
bde978a6 2 * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
bbc27441
AJ
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
f7f3304a 9#include "squid.h"
aa110616
AJ
10#include "auth/Config.h"
11#include "auth/ntlm/User.h"
12#include "Debug.h"
13
d4806c91 14Auth::Ntlm::User::User(Auth::Config *aConfig, const char *aRequestRealm) :
f53969cc 15 Auth::User(aConfig, aRequestRealm)
aa110616 16{
aa110616
AJ
17}
18
19Auth::Ntlm::User::~User()
20{
21 debugs(29, 5, HERE << "doing nothing to clear NTLM scheme data for '" << this << "'");
22}
23
24int32_t
25Auth::Ntlm::User::ttl() const
26{
27 return -1; // NTLM credentials cannot be cached.
28}
f53969cc 29