mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Move Conn and related types to zeek namespace
This commit is contained in:
parent
0355d13099
commit
7fefdd97af
147 changed files with 328 additions and 313 deletions
|
@ -12,7 +12,7 @@ namespace analyzer { namespace MySQL {
|
|||
class MySQL_Analyzer final : public tcp::TCP_ApplicationAnalyzer {
|
||||
|
||||
public:
|
||||
explicit MySQL_Analyzer(Connection* conn);
|
||||
explicit MySQL_Analyzer(zeek::Connection* conn);
|
||||
~MySQL_Analyzer() override;
|
||||
|
||||
// Overriden from Analyzer.
|
||||
|
@ -24,7 +24,7 @@ public:
|
|||
// Overriden from tcp::TCP_ApplicationAnalyzer.
|
||||
void EndpointEOF(bool is_orig) override;
|
||||
|
||||
static zeek::analyzer::Analyzer* Instantiate(Connection* conn)
|
||||
static zeek::analyzer::Analyzer* Instantiate(zeek::Connection* conn)
|
||||
{ return new MySQL_Analyzer(conn); }
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue