mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 13:38:19 +00:00
Move arp, tcp, udp, pia, and stepping stone analyzers
This commit is contained in:
parent
f1cfd5aa2b
commit
914ffcadae
112 changed files with 520 additions and 436 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue