mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +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
|
||||
// * when multiplexing outgoing connections to store clients
|
||||
type packetHandlerMap struct {
|
||||
mutex sync.RWMutex
|
||||
mutex sync.Mutex
|
||||
|
||||
conn connection
|
||||
connIDLen int
|
||||
|
@ -320,16 +320,14 @@ func (h *packetHandlerMap) handlePacket(p *receivedPacket) {
|
|||
return
|
||||
}
|
||||
|
||||
h.mutex.RLock()
|
||||
defer h.mutex.RUnlock()
|
||||
h.mutex.Lock()
|
||||
defer h.mutex.Unlock()
|
||||
|
||||
if isStatelessReset := h.maybeHandleStatelessReset(p.data); isStatelessReset {
|
||||
return
|
||||
}
|
||||
|
||||
handler, handlerFound := h.handlers[string(connID)]
|
||||
|
||||
if handlerFound { // existing session
|
||||
if handler, ok := h.handlers[string(connID)]; ok { // existing session
|
||||
handler.handlePacket(p)
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue