]> git.ipfire.org Git - thirdparty/squid.git/blame - src/comm/forward.h
Bug 3189: AIO thread race on pipe() initialization
[thirdparty/squid.git] / src / comm / forward.h
CommitLineData
f9b72e0c
AJ
1#ifndef _SQUID_COMM_FORWARD_H
2#define _SQUID_COMM_FORWARD_H
3
4#include "Array.h"
5#include "RefCount.h"
6
dc49061a
A
7namespace Comm
8{
f9b72e0c
AJ
9
10class Connection;
11
12typedef RefCount<Comm::Connection> ConnectionPointer;
13
00ae51e4 14typedef Vector<Comm::ConnectionPointer> ConnectionList;
f9b72e0c 15
97c81191
AJ
16bool IsConnOpen(const Comm::ConnectionPointer &conn);
17
f9b72e0c
AJ
18}; // namespace Comm
19
20#endif /* _SQUID_COMM_FORWARD_H */