mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 05:58:20 +00:00
Plugins: Clean up explicit uses of namespaces in places where they're not necessary.
This commit covers all of the plugin classes.
This commit is contained in:
parent
fe0c22c789
commit
70c2397f69
169 changed files with 3139 additions and 3141 deletions
|
@ -6,16 +6,16 @@
|
|||
|
||||
namespace zeek::analyzer::dhcp {
|
||||
|
||||
class DHCP_Analyzer final : public zeek::analyzer::Analyzer {
|
||||
class DHCP_Analyzer final : public analyzer::Analyzer {
|
||||
public:
|
||||
explicit DHCP_Analyzer(zeek::Connection* conn);
|
||||
explicit DHCP_Analyzer(Connection* conn);
|
||||
~DHCP_Analyzer() override;
|
||||
|
||||
void Done() override;
|
||||
void DeliverPacket(int len, const u_char* data, bool orig,
|
||||
uint64_t seq, const zeek::IP_Hdr* ip, int caplen) override;
|
||||
uint64_t seq, const IP_Hdr* ip, int caplen) override;
|
||||
|
||||
static zeek::analyzer::Analyzer* Instantiate(zeek::Connection* conn)
|
||||
static analyzer::Analyzer* Instantiate(Connection* conn)
|
||||
{ return new DHCP_Analyzer(conn); }
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue