Move Conn and related types to zeek namespace

This commit is contained in:
Tim Wojtulewicz 2020-07-22 15:02:48 -07:00
parent 0355d13099
commit 7fefdd97af
147 changed files with 328 additions and 313 deletions

View file

@ -123,7 +123,7 @@ static zeek::RecordVal* build_syn_packet_val(bool is_orig, const zeek::IP_Hdr* i
}
TCP_Analyzer::TCP_Analyzer(Connection* conn)
TCP_Analyzer::TCP_Analyzer(zeek::Connection* conn)
: TransportLayerAnalyzer("TCP", conn)
{
// Set a timer to eventually time out this connection.
@ -2092,7 +2092,7 @@ zeek::RecordVal* TCPStats_Endpoint::BuildStats()
return stats;
}
TCPStats_Analyzer::TCPStats_Analyzer(Connection* c)
TCPStats_Analyzer::TCPStats_Analyzer(zeek::Connection* c)
: TCP_ApplicationAnalyzer("TCPSTATS", c),
orig_stats(), resp_stats()
{