mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 21:48:21 +00:00
Move the SIP analyzer to uint64 sequences, and a number of other small SIP fixes.
This commit is contained in:
parent
f93f2af748
commit
214e6b3ea9
6 changed files with 102 additions and 49 deletions
|
@ -17,13 +17,14 @@ 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)
|
||||
{ return new SIP_Analyzer(conn); }
|
||||
|
||||
static bool Available()
|
||||
{ return sip_request; }
|
||||
{ return sip_request || sip_reply || sip_header ||
|
||||
sip_all_headers || sip_begin_entity || sip_end_entity; }
|
||||
|
||||
protected:
|
||||
binpac::SIP::SIP_Conn* interp;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue