Move all base analyzer classes to zeek::analyzer namespace

This commit is contained in:
Tim Wojtulewicz 2020-07-01 18:21:38 -07:00
parent 87054d9d6b
commit 9400b863ea
171 changed files with 516 additions and 486 deletions

View file

@ -6,7 +6,7 @@
namespace analyzer { namespace dhcp {
class DHCP_Analyzer final : public analyzer::Analyzer {
class DHCP_Analyzer final : public zeek::analyzer::Analyzer {
public:
explicit DHCP_Analyzer(Connection* conn);
~DHCP_Analyzer() override;
@ -15,7 +15,7 @@ public:
void DeliverPacket(int len, const u_char* data, bool orig,
uint64_t seq, const IP_Hdr* ip, int caplen) override;
static analyzer::Analyzer* Instantiate(Connection* conn)
static zeek::analyzer::Analyzer* Instantiate(Connection* conn)
{ return new DHCP_Analyzer(conn); }
protected: