mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 17:48: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/ipv6/IPv6.cc
Normal file
18
src/packet_analysis/protocol/ipv6/IPv6.cc
Normal file
|
@ -0,0 +1,18 @@
|
|||
// See the file "COPYING" in the main distribution directory for copyright.
|
||||
|
||||
#include "IPv6.h"
|
||||
|
||||
using namespace zeek::packet_analysis::IPv6;
|
||||
|
||||
IPv6Analyzer::IPv6Analyzer()
|
||||
: zeek::packet_analysis::Analyzer("IPv6")
|
||||
{
|
||||
}
|
||||
|
||||
std::tuple<zeek::packet_analysis::AnalyzerResult, zeek::packet_analysis::identifier_t> IPv6Analyzer::Analyze(Packet* packet)
|
||||
{
|
||||
packet->l3_proto = L3_IPV6;
|
||||
|
||||
// Leave LL analyzer land
|
||||
return { AnalyzerResult::Terminate, 0 };
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue