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