fix race condition in updConn

fixes #345
This commit is contained in:
Marten Seemann 2016-11-02 19:24:48 +07:00
parent ca80df28d8
commit 877f62505f
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA

View file

@ -1,6 +1,9 @@
package quic
import "net"
import (
"net"
"sync"
)
type connection interface {
write([]byte) error
@ -9,6 +12,8 @@ type connection interface {
}
type udpConn struct {
mutex sync.RWMutex
conn *net.UDPConn
currentAddr *net.UDPAddr
}
@ -21,9 +26,14 @@ func (c *udpConn) write(p []byte) error {
}
func (c *udpConn) setCurrentRemoteAddr(addr interface{}) {
c.mutex.Lock()
c.currentAddr = addr.(*net.UDPAddr)
c.mutex.Unlock()
}
func (c *udpConn) RemoteAddr() *net.UDPAddr {
return c.currentAddr
c.mutex.RLock()
addr := c.currentAddr
c.mutex.RUnlock()
return addr
}