ci: add race detector flag to hyperbole & fix a race condition in UDPTunnel

This commit is contained in:
Toby 2023-10-05 14:22:17 -07:00
parent 6f1807a376
commit f8482a3ddb
2 changed files with 17 additions and 6 deletions

View file

@ -75,12 +75,13 @@ type UDPEventLogger interface {
}
func (t *UDPTunnel) Serve(pc net.PacketConn) error {
t.m = make(map[string]*sessionEntry)
stopCh := make(chan struct{})
go t.idleCleanupLoop(stopCh)
defer close(stopCh)
defer t.cleanup(false)
t.m = make(map[string]*sessionEntry)
buf := make([]byte, udpBufferSize)
for {
n, addr, err := pc.ReadFrom(buf)