]> git.ipfire.org Git - thirdparty/squid.git/blame - src/store_digest.h
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / store_digest.h
CommitLineData
35a28a37 1/*
5b74111a 2 * Copyright (C) 1996-2018 The Squid Software Foundation and contributors
35a28a37 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.
35a28a37
FC
7 */
8
bbc27441
AJ
9/* DEBUG: section 71 Store Digest Manager */
10
11#ifndef SQUID_STORE_DIGEST_H_
12#define SQUID_STORE_DIGEST_H_
13
35a28a37
FC
14class StoreEntry;
15
8a648e8d
FC
16void storeDigestInit(void);
17void storeDigestNoteStoreReady(void);
18void storeDigestDel(const StoreEntry * entry);
19void storeDigestReport(StoreEntry *);
35a28a37
FC
20
21#endif /* SQUID_STORE_DIGEST_H_ */
f53969cc 22