mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 21:48:21 +00:00
38 lines
684 B
C++
38 lines
684 B
C++
#include "DHCP.h"
|
|
|
|
#include "events.bif.h"
|
|
#include "types.bif.h"
|
|
|
|
using namespace analyzer::dhcp;
|
|
|
|
DHCP_Analyzer::DHCP_Analyzer(Connection* conn)
|
|
: Analyzer("DHCP", conn)
|
|
{
|
|
interp = new binpac::DHCP::DHCP_Conn(this);
|
|
}
|
|
|
|
DHCP_Analyzer::~DHCP_Analyzer()
|
|
{
|
|
delete interp;
|
|
}
|
|
|
|
void DHCP_Analyzer::Done()
|
|
{
|
|
Analyzer::Done();
|
|
}
|
|
|
|
void DHCP_Analyzer::DeliverPacket(int len, const u_char* data,
|
|
bool orig, uint64_t seq, const IP_Hdr* ip, int caplen)
|
|
{
|
|
Analyzer::DeliverPacket(len, data, orig, seq, ip, caplen);
|
|
|
|
try
|
|
{
|
|
interp->NewData(orig, data, data + len);
|
|
}
|
|
catch ( const binpac::Exception& e )
|
|
{
|
|
ProtocolViolation(fmt("Binpac exception: %s", e.c_msg()));
|
|
}
|
|
|
|
}
|