mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 02:28:21 +00:00
Renamed LL-Analyzers to Packet Analyzers.
This commit is contained in:
parent
b2e6c9ac9a
commit
e53ec46c23
148 changed files with 587 additions and 587 deletions
18
src/packet_analysis/protocol/ipv4/IPv4.cc
Normal file
18
src/packet_analysis/protocol/ipv4/IPv4.cc
Normal file
|
@ -0,0 +1,18 @@
|
|||
// See the file "COPYING" in the main distribution directory for copyright.
|
||||
|
||||
#include "IPv4.h"
|
||||
|
||||
using namespace zeek::packet_analysis::IPv4;
|
||||
|
||||
IPv4Analyzer::IPv4Analyzer()
|
||||
: zeek::packet_analysis::Analyzer("IPv4")
|
||||
{
|
||||
}
|
||||
|
||||
std::tuple<zeek::packet_analysis::AnalyzerResult, zeek::packet_analysis::identifier_t> IPv4Analyzer::Analyze(Packet* packet)
|
||||
{
|
||||
packet->l3_proto = L3_IPV4;
|
||||
|
||||
// Leave LL analyzer land
|
||||
return { AnalyzerResult::Terminate, 0 };
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue