Remove other general deprecations

This commit is contained in:
Tim Wojtulewicz 2022-06-16 12:29:42 -07:00
parent 6130d32440
commit fb16ce3711
16 changed files with 5 additions and 278 deletions

View file

@ -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;
}

View file

@ -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;
}