all: Don't let Suture capture panics (fixes #4758) (#5119)

Fork with new option.
This commit is contained in:
Jakob Borg
2018-08-13 20:39:08 +02:00
committed by GitHub
parent c55c0c8c28
commit 48795dba07
18 changed files with 63 additions and 37 deletions

View File

@@ -12,7 +12,7 @@ import (
"net"
"time"
"github.com/thejerf/suture"
"github.com/calmh/suture"
"golang.org/x/net/ipv6"
)
@@ -36,6 +36,7 @@ func NewMulticast(addr string) *Multicast {
Log: func(line string) {
l.Debugln(line)
},
PanicPanics: true,
}),
inbox: make(chan []byte),
outbox: make(chan recv, 16),