]> git.ipfire.org Git - thirdparty/squid.git/blob - src/NeighborTypeDomainList.h
33bf9a23597359be0602b475000307a20a5436bf
[thirdparty/squid.git] / src / NeighborTypeDomainList.h
1 /*
2 * Copyright (C) 1996-2019 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_NEIGHBORTYPEDOMAINLIST_H_
10 #define SQUID_NEIGHBORTYPEDOMAINLIST_H_
11
12 /// representation of a neighbor_type_domain configuration directive. A POD
13 class NeighborTypeDomainList
14 {
15 public:
16 char *domain;
17 peer_t type;
18 NeighborTypeDomainList *next;
19 };
20
21 #endif /* SQUID_NEIGHBORTYPEDOMAINLIST_H_ */
22