]> git.ipfire.org Git - thirdparty/squid.git/blame - src/comm/forward.h
Add TCP_TUNNEL log code for CONNECT tunnels which are not SSL-bumped
[thirdparty/squid.git] / src / comm / forward.h
CommitLineData
f9b72e0c
AJ
1#ifndef _SQUID_COMM_FORWARD_H
2#define _SQUID_COMM_FORWARD_H
3
8bf217bd 4#include "base/RefCount.h"
523c3de3
FC
5
6#include <vector>
f9b72e0c 7
dc49061a
A
8namespace Comm
9{
f9b72e0c
AJ
10
11class Connection;
12
13typedef RefCount<Comm::Connection> ConnectionPointer;
14
523c3de3 15typedef std::vector<Comm::ConnectionPointer> ConnectionList;
f9b72e0c 16
97c81191
AJ
17bool IsConnOpen(const Comm::ConnectionPointer &conn);
18
f9b72e0c
AJ
19}; // namespace Comm
20
21#endif /* _SQUID_COMM_FORWARD_H */