]> git.ipfire.org Git - thirdparty/squid.git/blame - src/auth/negotiate/User.cc
Boilerplate: update copyright blurbs on src/
[thirdparty/squid.git] / src / auth / negotiate / User.cc
CommitLineData
bbc27441
AJ
1/*
2 * Copyright (C) 1996-2014 The Squid Software Foundation and contributors
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/negotiate/User.h"
12#include "Debug.h"
13
d4806c91
CT
14Auth::Negotiate::User::User(Auth::Config *aConfig, const char *aRequestRealm) :
15 Auth::User(aConfig, aRequestRealm)
aa110616 16{
aa110616
AJ
17}
18
19Auth::Negotiate::User::~User()
20{
21 debugs(29, 5, HERE << "doing nothing to clear Negotiate scheme data for '" << this << "'");
22}
23
24int32_t
25Auth::Negotiate::User::ttl() const
26{
27 return -1; // Negotiate cannot be cached.
28}