mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 08:08:19 +00:00
Move old TCP analyzer into analyzer adapter in packet analysis tree
This commit is contained in:
parent
b171f94729
commit
f6e31107e1
25 changed files with 2243 additions and 2247 deletions
|
@ -85,8 +85,7 @@ void ContentLine_Analyzer::DeliverStream(int len, const u_char* data,
|
|||
|
||||
if ( skip_partial )
|
||||
{
|
||||
TCP_Analyzer* tcp =
|
||||
static_cast<TCP_ApplicationAnalyzer*>(Parent())->TCP();
|
||||
auto* tcp = static_cast<TCP_ApplicationAnalyzer*>(Parent())->TCP();
|
||||
|
||||
if ( tcp && tcp->IsPartial() )
|
||||
return;
|
||||
|
@ -300,8 +299,7 @@ void ContentLine_Analyzer::CheckNUL()
|
|||
// had been an initial SYN, so we check for whether
|
||||
// the connection has at most two bytes so far.
|
||||
|
||||
TCP_Analyzer* tcp =
|
||||
static_cast<TCP_ApplicationAnalyzer*>(Parent())->TCP();
|
||||
auto* tcp = static_cast<TCP_ApplicationAnalyzer*>(Parent())->TCP();
|
||||
|
||||
if ( tcp )
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue