mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00
Move Stats and related classes to zeek::detail
This commit is contained in:
parent
c9ab1f93e7
commit
fdcb2760b2
12 changed files with 75 additions and 41 deletions
|
@ -542,13 +542,13 @@ void TCP_Reassembler::AckReceived(uint64_t seq)
|
|||
|
||||
if ( test_active )
|
||||
{
|
||||
++tot_ack_events;
|
||||
tot_ack_bytes += seq - trim_seq;
|
||||
++zeek::detail::tot_ack_events;
|
||||
zeek::detail::tot_ack_bytes += seq - trim_seq;
|
||||
|
||||
if ( num_missing > 0 )
|
||||
{
|
||||
++tot_gap_events;
|
||||
tot_gap_bytes += num_missing;
|
||||
++zeek::detail::tot_gap_events;
|
||||
zeek::detail::tot_gap_bytes += num_missing;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue