mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 09:38:19 +00:00
Move seq to uint64 to match recent changes in seq processing.
This commit is contained in:
parent
df99f87dbf
commit
d88f8d77cb
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue