mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
expose some TCP analyzer utility functions for use by derived classes
This commit is contained in:
parent
aebcb1415d
commit
85acdc14e4
2 changed files with 12 additions and 4 deletions
|
@ -1019,9 +1019,9 @@ void TCP_Analyzer::CheckPIA_FirstPacket(int is_orig, const IP_Hdr* ip)
|
|||
}
|
||||
}
|
||||
|
||||
static uint64 get_relative_seq(const TCP_Endpoint* endpoint,
|
||||
uint32 cur_base, uint32 last, uint32 wraps,
|
||||
bool* underflow = 0)
|
||||
uint64 TCP_Analyzer::get_relative_seq(const TCP_Endpoint* endpoint,
|
||||
uint32 cur_base, uint32 last,
|
||||
uint32 wraps, bool* underflow)
|
||||
{
|
||||
int32 delta = seq_delta(cur_base, last);
|
||||
|
||||
|
@ -1052,7 +1052,7 @@ static uint64 get_relative_seq(const TCP_Endpoint* endpoint,
|
|||
return endpoint->ToRelativeSeqSpace(cur_base, wraps);
|
||||
}
|
||||
|
||||
static int get_segment_len(int payload_len, TCP_Flags flags)
|
||||
int TCP_Analyzer::get_segment_len(int payload_len, TCP_Flags flags)
|
||||
{
|
||||
int seg_len = payload_len;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue