mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 05:58:20 +00:00
Move all base analyzer classes to zeek::analyzer namespace
This commit is contained in:
parent
87054d9d6b
commit
9400b863ea
171 changed files with 516 additions and 486 deletions
|
@ -7,7 +7,7 @@
|
|||
|
||||
namespace analyzer { namespace SIP {
|
||||
|
||||
class SIP_Analyzer final : public analyzer::Analyzer {
|
||||
class SIP_Analyzer final : public zeek::analyzer::Analyzer {
|
||||
public:
|
||||
explicit SIP_Analyzer(Connection* conn);
|
||||
~SIP_Analyzer() override;
|
||||
|
@ -18,7 +18,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 SIP_Analyzer(conn); }
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue