]> git.ipfire.org Git - thirdparty/squid.git/blame - src/CachePeerDomainList.h
Boilerplate: update copyright blurbs on src/
[thirdparty/squid.git] / src / CachePeerDomainList.h
CommitLineData
b802d2cb 1/*
bbc27441 2 * Copyright (C) 1996-2014 The Squid Software Foundation and contributors
b802d2cb 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.
b802d2cb
FC
7 */
8
bbc27441
AJ
9#ifndef SQUID_CACHEPEERDOMAINLIST_H_
10#define SQUID_CACHEPEERDOMAINLIST_H_
11
b802d2cb
FC
12/// representation of the cache_peer_domain list. POD.
13class CachePeerDomainList
14{
15public:
16 char *domain;
17 bool do_ping;
18 CachePeerDomainList *next;
19};
20
21#endif /* SQUID_CACHEPEERDOMAINLIST_H_ */