]> git.ipfire.org Git - thirdparty/squid.git/blame - src/ExternalACLEntry.cc
Cleanup: zap CVS Id tags
[thirdparty/squid.git] / src / ExternalACLEntry.cc
CommitLineData
1e5562e3 1
2/*
262a0e14 3 * $Id$
1e5562e3 4 *
5 * DEBUG: section 82 External ACL
6 * AUTHOR: Henrik Nordstrom, MARA Systems AB
7 *
8 * SQUID Web Proxy Cache http://www.squid-cache.org/
9 * ----------------------------------------------------------
10 *
11 * The contents of this file is Copyright (C) 2002 by MARA Systems AB,
12 * Sweden, unless otherwise is indicated in the specific function. The
13 * author gives his full permission to include this file into the Squid
14 * software product under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of the
16 * License, or (at your option) any later version.
17 *
18 * Squid is the result of efforts by numerous individuals from
19 * the Internet community; see the CONTRIBUTORS file for full
20 * details. Many organizations have provided support for Squid's
21 * development; see the SPONSORS file for full details. Squid is
22 * Copyrighted (C) 2001 by the Regents of the University of
23 * California; see the COPYRIGHT file for full details. Squid
24 * incorporates software developed and/or copyrighted by other
25 * sources; see the CREDITS file for full details.
26 *
27 * This program is free software; you can redistribute it and/or modify
28 * it under the terms of the GNU General Public License as published by
29 * the Free Software Foundation; either version 2 of the License, or
30 * (at your option) any later version.
26ac0430 31 *
1e5562e3 32 * This program is distributed in the hope that it will be useful,
33 * but WITHOUT ANY WARRANTY; without even the implied warranty of
34 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 * GNU General Public License for more details.
26ac0430 36 *
1e5562e3 37 * You should have received a copy of the GNU General Public License
38 * along with this program; if not, write to the Free Software
39 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
40 *
41 * Copyright (c) 2003, Robert Collins <robertc@squid-cache.org>
42 */
43
44#include "squid.h"
45#include "ExternalACLEntry.h"
985c86bc 46#include "SquidTime.h"
1e5562e3 47
48/******************************************************************
49 * external_acl cache
50 */
51
52CBDATA_CLASS_INIT(ExternalACLEntry);
53
54void *
55ExternalACLEntry::operator new (size_t byteCount)
56{
57 /* derived classes with different sizes must implement their own new */
58 assert (byteCount == sizeof (ExternalACLEntry));
59 CBDATA_INIT_TYPE(ExternalACLEntry);
60 return cbdataAlloc(ExternalACLEntry);
61}
62
63void
64ExternalACLEntry::operator delete (void *address)
65{
66 cbdataFree (address);
67}
68
1e5562e3 69ExternalACLEntry::ExternalACLEntry()
70{
71 lru.next = lru.prev = NULL;
72 result = 0;
73 date = 0;
1e5562e3 74 def = NULL;
75}
76
77ExternalACLEntry::~ExternalACLEntry()
78{
79 safe_free(key);
1e5562e3 80}
81
82void
83ExternalACLEntry::update(ExternalACLEntryData const &someData)
84{
85 date = squid_curtime;
86 result = someData.result;
1e5562e3 87
d7bd27db 88 user = someData.user;
abb929f0 89 password = someData.password;
d7bd27db 90 message = someData.message;
1e5562e3 91 tag = someData.tag;
4a972fa2 92 log = someData.log;
1e5562e3 93}