Skip to content
Snippets Groups Projects
Commit f1ab65b1 authored by David Fifield's avatar David Fifield
Browse files

Close the melt channel, don't just send once on it.

Closing the channel makes it always immediately selectable.
parent febb4936
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ func NewPeers(max int) *Peers {
// Use buffered go channel to pass snowflakes onwards to the SOCKS handler.
p.snowflakeChan = make(chan Snowflake, max)
p.activePeers = list.New()
p.melt = make(chan struct{}, 1)
p.melt = make(chan struct{})
return p
}
......@@ -110,7 +110,7 @@ func (p *Peers) purgeClosedPeers() {
// Close all Peers contained here.
func (p *Peers) End() {
close(p.snowflakeChan)
p.melt <- struct{}{}
close(p.melt)
cnt := p.Count()
for e := p.activePeers.Front(); e != nil; {
next := e.Next()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment