]> git.ipfire.org Git - thirdparty/squid.git/blame - src/adaptation/icap/icap_log.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / adaptation / icap / icap_log.h
CommitLineData
bbc27441 1/*
f70aedc4 2 * Copyright (C) 1996-2021 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
3ff65596
AR
9#ifndef ICAP_LOG_H_
10#define ICAP_LOG_H_
11
582c2af2 12#include "AccessLogEntry.h"
8bf217bd 13#include "base/RefCount.h"
41ebd397
CT
14
15typedef RefCount<AccessLogEntry> AccessLogEntryPointer;
3ff65596
AR
16class AccessLogEntry;
17class ACLChecklist;
18
19void icapLogClose();
20void icapLogOpen();
21void icapLogRotate();
8ebad780 22void icapLogLog(AccessLogEntryPointer &al);
3ff65596
AR
23
24extern int IcapLogfileStatus;
25
26#endif /*ICAP_LOG_H_*/
f53969cc 27