]> git.ipfire.org Git - thirdparty/squid.git/blame - src/log/access_log.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / log / access_log.h
CommitLineData
fc54b8d2 1/*
bde978a6 2 * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
7bc5d260 3 *
bbc27441
AJ
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.
fc54b8d2
FC
7 */
8
bbc27441
AJ
9/* DEBUG: section 46 Access Log */
10
fc54b8d2
FC
11#ifndef SQUID_LOG_ACCESS_LOG_H_
12#define SQUID_LOG_ACCESS_LOG_H_
13
02c8dde5
AJ
14#include "LogTags.h"
15
82afb125
FC
16void fvdbCountVia(const char *key);
17void fvdbCountForw(const char *key);
fc54b8d2
FC
18
19#if HEADERS_LOG
20class HttpRequestMethod;
82afb125 21void headersLog(int cs, int pq, const HttpRequestMethod& m, void *data);
fc54b8d2
FC
22#endif
23
fc54b8d2 24#endif /* SQUID_LOG_ACCESS_LOG_H_ */
f53969cc 25