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

@ -8,14 +8,14 @@ namespace analyzer { namespace dhcp {
class DHCP_Analyzer final : public zeek::analyzer::Analyzer {
public:
explicit DHCP_Analyzer(Connection* conn);
explicit DHCP_Analyzer(zeek::Connection* conn);
~DHCP_Analyzer() override;
void Done() override;
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 DHCP_Analyzer(conn); }
protected: