mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 12: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
|
@ -37,7 +37,7 @@ typedef enum {
|
|||
|
||||
class SMTP_Analyzer final : public tcp::TCP_ApplicationAnalyzer {
|
||||
public:
|
||||
explicit SMTP_Analyzer(Connection* conn);
|
||||
explicit SMTP_Analyzer(zeek::Connection* conn);
|
||||
~SMTP_Analyzer() override;
|
||||
|
||||
void Done() override;
|
||||
|
@ -47,7 +47,7 @@ public:
|
|||
|
||||
void SkipData() { skip_data = 1; } // skip delivery of data lines
|
||||
|
||||
static zeek::analyzer::Analyzer* Instantiate(Connection* conn)
|
||||
static zeek::analyzer::Analyzer* Instantiate(zeek::Connection* conn)
|
||||
{
|
||||
return new SMTP_Analyzer(conn);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue