Move seq to uint64 to match recent changes in seq processing.

This commit is contained in:
Vlad Grigorescu 2014-05-15 09:47:20 -04:00
parent df99f87dbf
commit d88f8d77cb
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ void RADIUS_Analyzer::Done()
}
void RADIUS_Analyzer::DeliverPacket(int len, const u_char* data,
bool orig, int seq, const IP_Hdr* ip, int caplen)
bool orig, uint64 seq, const IP_Hdr* ip, int caplen)
{
Analyzer::DeliverPacket(len, data, orig, seq, ip, caplen);

View file

@ -24,7 +24,7 @@ public:
virtual void Done();
virtual void DeliverPacket(int len, const u_char* data, bool orig,
int seq, const IP_Hdr* ip, int caplen);
uint64 seq, const IP_Hdr* ip, int caplen);
static analyzer::Analyzer* InstantiateAnalyzer(Connection* conn)