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

@ -4,7 +4,7 @@
#include "events.bif.h"
using namespace analyzer::tcp;
namespace zeek::analyzer::tcp {
ContentLine_Analyzer::ContentLine_Analyzer(zeek::Connection* conn, bool orig, int max_line_length)
: TCP_SupportAnalyzer("CONTENTLINE", conn, orig), max_line_length(max_line_length)
@ -338,3 +338,5 @@ void ContentLine_Analyzer::SkipBytes(int64_t length)
skip_pending = 0;
seq_to_skip = SeqDelivered() + length;
}
} // namespace zeek::analyzer::tcp