mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
replace the RWMutex with a Mutex in the packet handler map
This commit is contained in:
parent
272229abf0
commit
ba37b0e02b
1 changed files with 4 additions and 6 deletions
|
@ -30,7 +30,7 @@ func (e statelessResetErr) Error() string {
|
||||||
// * by the server to store sessions
|
// * by the server to store sessions
|
||||||
// * when multiplexing outgoing connections to store clients
|
// * when multiplexing outgoing connections to store clients
|
||||||
type packetHandlerMap struct {
|
type packetHandlerMap struct {
|
||||||
mutex sync.RWMutex
|
mutex sync.Mutex
|
||||||
|
|
||||||
conn connection
|
conn connection
|
||||||
connIDLen int
|
connIDLen int
|
||||||
|
@ -320,16 +320,14 @@ func (h *packetHandlerMap) handlePacket(p *receivedPacket) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
h.mutex.RLock()
|
h.mutex.Lock()
|
||||||
defer h.mutex.RUnlock()
|
defer h.mutex.Unlock()
|
||||||
|
|
||||||
if isStatelessReset := h.maybeHandleStatelessReset(p.data); isStatelessReset {
|
if isStatelessReset := h.maybeHandleStatelessReset(p.data); isStatelessReset {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
handler, handlerFound := h.handlers[string(connID)]
|
if handler, ok := h.handlers[string(connID)]; ok { // existing session
|
||||||
|
|
||||||
if handlerFound { // existing session
|
|
||||||
handler.handlePacket(p)
|
handler.handlePacket(p)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue