]> git.ipfire.org Git - thirdparty/squid.git/blob - src/adaptation/icap/icap_log.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / adaptation / icap / icap_log.h
1 /*
2 * Copyright (C) 1996-2017 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
9 #ifndef ICAP_LOG_H_
10 #define ICAP_LOG_H_
11
12 #include "AccessLogEntry.h"
13 #include "base/RefCount.h"
14
15 typedef RefCount<AccessLogEntry> AccessLogEntryPointer;
16 class AccessLogEntry;
17 class ACLChecklist;
18
19 void icapLogClose();
20 void icapLogOpen();
21 void icapLogRotate();
22 void icapLogLog(AccessLogEntryPointer &al);
23
24 extern int IcapLogfileStatus;
25
26 #endif /*ICAP_LOG_H_*/
27