mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 21:48:21 +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
|
@ -9,7 +9,7 @@ namespace analyzer { namespace SIP {
|
|||
|
||||
class SIP_Analyzer final : public zeek::analyzer::Analyzer {
|
||||
public:
|
||||
explicit SIP_Analyzer(Connection* conn);
|
||||
explicit SIP_Analyzer(zeek::Connection* conn);
|
||||
~SIP_Analyzer() override;
|
||||
|
||||
// Overridden from Analyzer
|
||||
|
@ -18,7 +18,7 @@ public:
|
|||
void DeliverPacket(int len, const u_char* data, bool orig,
|
||||
uint64_t seq, const zeek::IP_Hdr* ip, int caplen) override;
|
||||
|
||||
static zeek::analyzer::Analyzer* Instantiate(Connection* conn)
|
||||
static zeek::analyzer::Analyzer* Instantiate(zeek::Connection* conn)
|
||||
{ return new SIP_Analyzer(conn); }
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue