mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
use struct{} instead of bool in map just as a set
This commit is contained in:
parent
798051a0e4
commit
4a5adad35b
1 changed files with 4 additions and 4 deletions
|
@ -11,8 +11,8 @@ import (
|
||||||
type windowUpdateQueue struct {
|
type windowUpdateQueue struct {
|
||||||
mutex sync.Mutex
|
mutex sync.Mutex
|
||||||
|
|
||||||
queue map[protocol.StreamID]bool // used as a set
|
queue map[protocol.StreamID]struct{} // used as a set
|
||||||
queuedConn bool // connection-level window update
|
queuedConn bool // connection-level window update
|
||||||
|
|
||||||
streamGetter streamGetter
|
streamGetter streamGetter
|
||||||
connFlowController flowcontrol.ConnectionFlowController
|
connFlowController flowcontrol.ConnectionFlowController
|
||||||
|
@ -25,7 +25,7 @@ func newWindowUpdateQueue(
|
||||||
cb func(wire.Frame),
|
cb func(wire.Frame),
|
||||||
) *windowUpdateQueue {
|
) *windowUpdateQueue {
|
||||||
return &windowUpdateQueue{
|
return &windowUpdateQueue{
|
||||||
queue: make(map[protocol.StreamID]bool),
|
queue: make(map[protocol.StreamID]struct{}),
|
||||||
streamGetter: streamGetter,
|
streamGetter: streamGetter,
|
||||||
connFlowController: connFC,
|
connFlowController: connFC,
|
||||||
callback: cb,
|
callback: cb,
|
||||||
|
@ -34,7 +34,7 @@ func newWindowUpdateQueue(
|
||||||
|
|
||||||
func (q *windowUpdateQueue) AddStream(id protocol.StreamID) {
|
func (q *windowUpdateQueue) AddStream(id protocol.StreamID) {
|
||||||
q.mutex.Lock()
|
q.mutex.Lock()
|
||||||
q.queue[id] = true
|
q.queue[id] = struct{}{}
|
||||||
q.mutex.Unlock()
|
q.mutex.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue