mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 21:48:21 +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
|
@ -7,18 +7,18 @@
|
|||
|
||||
namespace zeek::analyzer::sip{
|
||||
|
||||
class SIP_Analyzer final : public zeek::analyzer::Analyzer {
|
||||
class SIP_Analyzer final : public analyzer::Analyzer {
|
||||
public:
|
||||
explicit SIP_Analyzer(zeek::Connection* conn);
|
||||
explicit SIP_Analyzer(Connection* conn);
|
||||
~SIP_Analyzer() override;
|
||||
|
||||
// Overridden from Analyzer
|
||||
|
||||
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 SIP_Analyzer(conn); }
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue