Remove unnecessary #includes in analyzer/packet analyzer/file analyzer headers

This commit is contained in:
Tim Wojtulewicz 2025-04-08 14:57:34 -07:00
parent 896e41c794
commit 456c1fa42c
72 changed files with 41 additions and 91 deletions

View file

@ -22,6 +22,8 @@ Discarder::Discarder() {
discarder_maxlen = static_cast<int>(id::find_val("discarder_maxlen")->AsCount());
}
Discarder::~Discarder() {}
bool Discarder::IsActive() { return check_ip || check_tcp || check_udp || check_icmp; }
bool Discarder::NextPacket(const std::shared_ptr<IP_Hdr>& ip, int len, int caplen) {