Move Conn and related types to zeek namespace

This commit is contained in:
Tim Wojtulewicz 2020-07-22 15:02:48 -07:00
parent 0355d13099
commit 7fefdd97af
147 changed files with 328 additions and 313 deletions

View file

@ -13,7 +13,7 @@ namespace analyzer { namespace sip_tcp {
class SIP_Analyzer final : public tcp::TCP_ApplicationAnalyzer {
public:
explicit SIP_Analyzer(Connection* conn);
explicit SIP_Analyzer(zeek::Connection* conn);
~SIP_Analyzer() override;
void Done() override;
@ -23,7 +23,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 SIP_Analyzer(conn); }
protected: