Move arp, tcp, udp, pia, and stepping stone analyzers

This commit is contained in:
Tim Wojtulewicz 2020-08-03 12:53:07 -07:00
parent f1cfd5aa2b
commit 914ffcadae
112 changed files with 520 additions and 436 deletions

View file

@ -5,7 +5,7 @@
using namespace analyzer::zip;
ZIP_Analyzer::ZIP_Analyzer(zeek::Connection* conn, bool orig, Method arg_method)
: tcp::TCP_SupportAnalyzer("ZIP", conn, orig)
: zeek::analyzer::tcp::TCP_SupportAnalyzer("ZIP", conn, orig)
{
zip = nullptr;
zip_status = Z_OK;
@ -45,7 +45,7 @@ void ZIP_Analyzer::Done()
void ZIP_Analyzer::DeliverStream(int len, const u_char* data, bool orig)
{
tcp::TCP_SupportAnalyzer::DeliverStream(len, data, orig);
zeek::analyzer::tcp::TCP_SupportAnalyzer::DeliverStream(len, data, orig);
if ( ! len || zip_status != Z_OK )
return;