]> git.ipfire.org Git - thirdparty/squid.git/blob - src/comm/forward.h
Merge from trunk
[thirdparty/squid.git] / src / comm / forward.h
1 #ifndef _SQUID_COMM_FORWARD_H
2 #define _SQUID_COMM_FORWARD_H
3
4 #include "base/RefCount.h"
5
6 #include <vector>
7
8 namespace Comm
9 {
10
11 class Connection;
12
13 typedef RefCount<Comm::Connection> ConnectionPointer;
14
15 typedef std::vector<Comm::ConnectionPointer> ConnectionList;
16
17 bool IsConnOpen(const Comm::ConnectionPointer &conn);
18
19 }; // namespace Comm
20
21 #endif /* _SQUID_COMM_FORWARD_H */