retransmit the CONNECTION_CLOSE packet when late packets arrive

This commit is contained in:
Marten Seemann
2018-11-15 16:47:40 +07:00
parent 5e9e445f5b
commit 9d06b2cfff
6 changed files with 112 additions and 19 deletions

View File

@@ -0,0 +1,22 @@
package utils
import "sync/atomic"
// An AtomicBool is an atomic bool
type AtomicBool struct {
v int32
}
// Set sets the value
func (a *AtomicBool) Set(value bool) {
var n int32
if value {
n = 1
}
atomic.StoreInt32(&a.v, n)
}
// Get gets the value
func (a *AtomicBool) Get() bool {
return atomic.LoadInt32(&a.v) != 0
}