]> git.ipfire.org Git - thirdparty/squid.git/blame - src/NeighborTypeDomainList.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / NeighborTypeDomainList.h
CommitLineData
5844d003 1/*
4ac4a490 2 * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
5844d003 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.
5844d003
FC
7 */
8
bbc27441
AJ
9#ifndef SQUID_NEIGHBORTYPEDOMAINLIST_H_
10#define SQUID_NEIGHBORTYPEDOMAINLIST_H_
11
5844d003
FC
12/// representation of a neighbor_type_domain configuration directive. A POD
13class NeighborTypeDomainList
14{
15public:
16 char *domain;
17 peer_t type;
18 NeighborTypeDomainList *next;
19};
20
21#endif /* SQUID_NEIGHBORTYPEDOMAINLIST_H_ */
f53969cc 22