Implement capSet with a map[string]bool instead of map[string]struct{}

This commit is contained in:
Stefano 2022-03-09 11:43:54 +01:00
parent bf99ab6001
commit 9268be4d67
1 changed files with 5 additions and 6 deletions

View File

@ -84,27 +84,26 @@ const (
) )
type capSet struct { type capSet struct {
caps map[string]struct{} caps map[string]bool
mu sync.RWMutex mu sync.RWMutex
} }
func capabilitySet() *capSet { func capabilitySet() *capSet {
return &capSet{ return &capSet{
caps: make(map[string]struct{}), caps: make(map[string]bool),
} }
} }
func (c *capSet) Add(cap string) { func (c *capSet) Add(cap string) {
c.mu.Lock() c.mu.Lock()
c.caps[cap] = struct{}{} c.caps[cap] = true
c.mu.Unlock() c.mu.Unlock()
} }
func (c *capSet) Has(cap string) bool { func (c *capSet) Has(cap string) bool {
c.mu.RLock() c.mu.RLock()
_, ok := c.caps[cap] defer c.mu.RUnlock()
c.mu.RUnlock() return c.caps[cap]
return ok
} }
// Handler for capability negotiation commands. // Handler for capability negotiation commands.