forked from pion/sctp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
association_stats.go
61 lines (48 loc) · 1.27 KB
/
association_stats.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package sctp
import (
"sync/atomic"
)
type associationStats struct {
nDATAs uint64
nSACKs uint64
nT3Timeouts uint64
nAckTimeouts uint64
nFastRetrans uint64
}
func (s *associationStats) incDATAs() {
atomic.AddUint64(&s.nDATAs, 1)
}
func (s *associationStats) getNumDATAs() uint64 {
return atomic.LoadUint64(&s.nDATAs)
}
func (s *associationStats) incSACKs() {
atomic.AddUint64(&s.nSACKs, 1)
}
func (s *associationStats) getNumSACKs() uint64 {
return atomic.LoadUint64(&s.nSACKs)
}
func (s *associationStats) incT3Timeouts() {
atomic.AddUint64(&s.nT3Timeouts, 1)
}
func (s *associationStats) getNumT3Timeouts() uint64 {
return atomic.LoadUint64(&s.nT3Timeouts)
}
func (s *associationStats) incAckTimeouts() {
atomic.AddUint64(&s.nAckTimeouts, 1)
}
func (s *associationStats) getNumAckTimeouts() uint64 {
return atomic.LoadUint64(&s.nAckTimeouts)
}
func (s *associationStats) incFastRetrans() {
atomic.AddUint64(&s.nFastRetrans, 1)
}
func (s *associationStats) getNumFastRetrans() uint64 {
return atomic.LoadUint64(&s.nFastRetrans)
}
func (s *associationStats) reset() {
atomic.StoreUint64(&s.nDATAs, 0)
atomic.StoreUint64(&s.nSACKs, 0)
atomic.StoreUint64(&s.nT3Timeouts, 0)
atomic.StoreUint64(&s.nAckTimeouts, 0)
atomic.StoreUint64(&s.nFastRetrans, 0)
}