mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 01:28:20 +00:00
Remove unnecessary include of NetVar.h from packet analysis plugins
This commit is contained in:
parent
96d9115360
commit
133ab55c91
11 changed files with 0 additions and 12 deletions
|
@ -1,7 +1,6 @@
|
||||||
// See the file "COPYING" in the main distribution directory for copyright.
|
// See the file "COPYING" in the main distribution directory for copyright.
|
||||||
|
|
||||||
#include "zeek/packet_analysis/protocol/ethernet/Ethernet.h"
|
#include "zeek/packet_analysis/protocol/ethernet/Ethernet.h"
|
||||||
#include "zeek/NetVar.h"
|
|
||||||
#include "zeek/packet_analysis/Manager.h"
|
#include "zeek/packet_analysis/Manager.h"
|
||||||
|
|
||||||
using namespace zeek::packet_analysis::Ethernet;
|
using namespace zeek::packet_analysis::Ethernet;
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
// See the file "COPYING" in the main distribution directory for copyright.
|
// See the file "COPYING" in the main distribution directory for copyright.
|
||||||
|
|
||||||
#include "zeek/packet_analysis/protocol/fddi/FDDI.h"
|
#include "zeek/packet_analysis/protocol/fddi/FDDI.h"
|
||||||
#include "zeek/NetVar.h"
|
|
||||||
|
|
||||||
using namespace zeek::packet_analysis::FDDI;
|
using namespace zeek::packet_analysis::FDDI;
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
// See the file "COPYING" in the main distribution directory for copyright.
|
// See the file "COPYING" in the main distribution directory for copyright.
|
||||||
|
|
||||||
#include "zeek/packet_analysis/protocol/ieee802_11/IEEE802_11.h"
|
#include "zeek/packet_analysis/protocol/ieee802_11/IEEE802_11.h"
|
||||||
#include "zeek/NetVar.h"
|
|
||||||
|
|
||||||
using namespace zeek::packet_analysis::IEEE802_11;
|
using namespace zeek::packet_analysis::IEEE802_11;
|
||||||
|
|
||||||
|
|
|
@ -4,8 +4,6 @@
|
||||||
|
|
||||||
#include <pcap.h>
|
#include <pcap.h>
|
||||||
|
|
||||||
#include "zeek/NetVar.h"
|
|
||||||
|
|
||||||
using namespace zeek::packet_analysis::IEEE802_11_Radio;
|
using namespace zeek::packet_analysis::IEEE802_11_Radio;
|
||||||
|
|
||||||
IEEE802_11_RadioAnalyzer::IEEE802_11_RadioAnalyzer()
|
IEEE802_11_RadioAnalyzer::IEEE802_11_RadioAnalyzer()
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
// See the file "COPYING" in the main distribution directory for copyright.
|
// See the file "COPYING" in the main distribution directory for copyright.
|
||||||
|
|
||||||
#include "zeek/packet_analysis/protocol/nflog/NFLog.h"
|
#include "zeek/packet_analysis/protocol/nflog/NFLog.h"
|
||||||
#include "zeek/NetVar.h"
|
|
||||||
|
|
||||||
using namespace zeek::packet_analysis::NFLog;
|
using namespace zeek::packet_analysis::NFLog;
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
// See the file "COPYING" in the main distribution directory for copyright.
|
// See the file "COPYING" in the main distribution directory for copyright.
|
||||||
|
|
||||||
#include "zeek/packet_analysis/protocol/null/Null.h"
|
#include "zeek/packet_analysis/protocol/null/Null.h"
|
||||||
#include "zeek/NetVar.h"
|
|
||||||
|
|
||||||
using namespace zeek::packet_analysis::Null;
|
using namespace zeek::packet_analysis::Null;
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
// See the file "COPYING" in the main distribution directory for copyright.
|
// See the file "COPYING" in the main distribution directory for copyright.
|
||||||
|
|
||||||
#include "zeek/packet_analysis/protocol/pppoe/PPPoE.h"
|
#include "zeek/packet_analysis/protocol/pppoe/PPPoE.h"
|
||||||
#include "zeek/NetVar.h"
|
|
||||||
|
|
||||||
using namespace zeek::packet_analysis::PPPoE;
|
using namespace zeek::packet_analysis::PPPoE;
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
// See the file "COPYING" in the main distribution directory for copyright.
|
// See the file "COPYING" in the main distribution directory for copyright.
|
||||||
|
|
||||||
#include "zeek/packet_analysis/protocol/root/Root.h"
|
#include "zeek/packet_analysis/protocol/root/Root.h"
|
||||||
#include "zeek/NetVar.h"
|
|
||||||
|
|
||||||
using namespace zeek::packet_analysis::Root;
|
using namespace zeek::packet_analysis::Root;
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
// See the file "COPYING" in the main distribution directory for copyright.
|
// See the file "COPYING" in the main distribution directory for copyright.
|
||||||
|
|
||||||
#include "zeek/packet_analysis/protocol/skip/Skip.h"
|
#include "zeek/packet_analysis/protocol/skip/Skip.h"
|
||||||
#include "zeek/NetVar.h"
|
|
||||||
|
|
||||||
using namespace zeek::packet_analysis::Skip;
|
using namespace zeek::packet_analysis::Skip;
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
// See the file "COPYING" in the main distribution directory for copyright.
|
// See the file "COPYING" in the main distribution directory for copyright.
|
||||||
|
|
||||||
#include "zeek/packet_analysis/protocol/vlan/VLAN.h"
|
#include "zeek/packet_analysis/protocol/vlan/VLAN.h"
|
||||||
#include "zeek/NetVar.h"
|
|
||||||
|
|
||||||
using namespace zeek::packet_analysis::VLAN;
|
using namespace zeek::packet_analysis::VLAN;
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
// See the file "COPYING" in the main distribution directory for copyright.
|
// See the file "COPYING" in the main distribution directory for copyright.
|
||||||
|
|
||||||
#include "zeek/packet_analysis/protocol/wrapper/Wrapper.h"
|
#include "zeek/packet_analysis/protocol/wrapper/Wrapper.h"
|
||||||
#include "zeek/NetVar.h"
|
|
||||||
|
|
||||||
using namespace zeek::packet_analysis::Wrapper;
|
using namespace zeek::packet_analysis::Wrapper;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue