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:
Tim Wojtulewicz 2020-08-21 09:45:16 -07:00
parent fe0c22c789
commit 70c2397f69
169 changed files with 3139 additions and 3141 deletions

View file

@ -11,19 +11,19 @@
namespace zeek::analyzer::sip_tcp {
class SIP_Analyzer final : public zeek::analyzer::tcp::TCP_ApplicationAnalyzer {
class SIP_Analyzer final : public analyzer::tcp::TCP_ApplicationAnalyzer {
public:
explicit SIP_Analyzer(zeek::Connection* conn);
explicit SIP_Analyzer(Connection* conn);
~SIP_Analyzer() override;
void Done() override;
void DeliverStream(int len, const u_char* data, bool orig) override;
void Undelivered(uint64_t seq, int len, bool orig) override;
// Overriden from zeek::analyzer::tcp::TCP_ApplicationAnalyzer.
// Overriden from analyzer::tcp::TCP_ApplicationAnalyzer.
void EndpointEOF(bool is_orig) override;
static zeek::analyzer::Analyzer* Instantiate(zeek::Connection* conn)
static analyzer::Analyzer* Instantiate(Connection* conn)
{ return new SIP_Analyzer(conn); }
protected: