Move Stats and related classes to zeek::detail

This commit is contained in:
Tim Wojtulewicz 2020-07-21 17:18:21 -07:00
parent c9ab1f93e7
commit fdcb2760b2
12 changed files with 75 additions and 41 deletions

View file

@ -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;
}
}