mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
ci: add race detector flag to hyperbole & fix a race condition in UDPTunnel
This commit is contained in:
parent
6f1807a376
commit
f8482a3ddb
2 changed files with 17 additions and 6 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue