mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14: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
|
@ -9,10 +9,10 @@
|
|||
|
||||
namespace zeek::analyzer::mysql {
|
||||
|
||||
class MySQL_Analyzer final : public zeek::analyzer::tcp::TCP_ApplicationAnalyzer {
|
||||
class MySQL_Analyzer final : public analyzer::tcp::TCP_ApplicationAnalyzer {
|
||||
|
||||
public:
|
||||
explicit MySQL_Analyzer(zeek::Connection* conn);
|
||||
explicit MySQL_Analyzer(Connection* conn);
|
||||
~MySQL_Analyzer() override;
|
||||
|
||||
// Overriden from Analyzer.
|
||||
|
@ -21,10 +21,10 @@ public:
|
|||
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 MySQL_Analyzer(conn); }
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue