LeviLamina
Loading...
Searching...
No Matches
RetransmissionErrorCounter.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace dcsctp {
6
7class RetransmissionErrorCounter {
8public:
9 // member variables
10 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 RetransmissionErrorCounter& operator=(RetransmissionErrorCounter const&);
19 RetransmissionErrorCounter(RetransmissionErrorCounter const&);
20 RetransmissionErrorCounter();
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCNAPI void Clear();
26
27 MCNAPI bool Increment(::std::string_view reason);
28 // NOLINTEND
29};
30
31} // namespace dcsctp
MCAPI bool Increment(::std::string_view reason)
Definition Alias.h:14