mirror of https://github.com/fluffle/goirc
Implement capSet with a map[string]bool instead of map[string]struct{}
This commit is contained in:
parent
bf99ab6001
commit
9268be4d67
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue