]> git.ipfire.org Git - thirdparty/squid.git/blob - src/CachePeerDomainList.h
Merge from trunk rev.13584
[thirdparty/squid.git] / src / CachePeerDomainList.h
1 /*
2 * Copyright (C) 1996-2014 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 SQUID_CACHEPEERDOMAINLIST_H_
10 #define SQUID_CACHEPEERDOMAINLIST_H_
11
12 /// representation of the cache_peer_domain list. POD.
13 class CachePeerDomainList
14 {
15 public:
16 char *domain;
17 bool do_ping;
18 CachePeerDomainList *next;
19 };
20
21 #endif /* SQUID_CACHEPEERDOMAINLIST_H_ */