mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 09:08:20 +00:00
Remove other general deprecations
This commit is contained in:
parent
6130d32440
commit
fb16ce3711
16 changed files with 5 additions and 278 deletions
|
@ -16,7 +16,7 @@ bool LLCDemo::AnalyzePacket(size_t len, const uint8_t* data, Packet* packet)
|
|||
// Rudimentary parsing of 802.2 LLC
|
||||
if ( 17 >= len )
|
||||
{
|
||||
sessions->Weird("truncated_llc_header", packet);
|
||||
session_mgr->Weird("truncated_llc_header", packet);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ bool RawLayer::AnalyzePacket(size_t len, const uint8_t* data, Packet* packet)
|
|||
constexpr auto layer_size = 21;
|
||||
if ( layer_size >= len )
|
||||
{
|
||||
sessions->Weird("truncated_raw_layer", packet);
|
||||
session_mgr->Weird("truncated_raw_layer", packet);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue