zeek/src/analyzer/protocol/ntp/NTP.cc
Tim Wojtulewicz 8d2d867a65 Move everything in util.h to zeek::util namespace.
This commit includes renaming a number of methods prefixed with bro_ to be prefixed with zeek_.
2020-08-20 16:00:33 -07:00

41 lines
800 B
C++

#include "NTP.h"
#include "Reporter.h"
#include "events.bif.h"
namespace zeek::analyzer::ntp {
NTP_Analyzer::NTP_Analyzer(zeek::Connection* c)
: zeek::analyzer::Analyzer("NTP", c)
{
interp = new binpac::NTP::NTP_Conn(this);
}
void NTP_Analyzer::Done()
{
Analyzer::Done();
Event(udp_session_done);
}
NTP_Analyzer::~NTP_Analyzer()
{
delete interp;
}
void NTP_Analyzer::DeliverPacket(int len, const u_char* data, bool orig,
uint64_t seq, const zeek::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(zeek::util::fmt("Binpac exception: %s", e.c_msg()));
}
}
} // namespace zeek::analyzer::ntp