link to the wiki explaining the UDP receive buffer size

This commit is contained in:
Marten Seemann 2020-12-02 15:52:24 +07:00
parent 0eb3f14a60
commit b0974c14ad
3 changed files with 7 additions and 7 deletions

View file

@ -1,6 +1,8 @@
package quic
import (
"io/ioutil"
"log"
"sync"
"testing"
@ -23,6 +25,10 @@ var _ = BeforeEach(func() {
connMuxerOnce = *new(sync.Once)
})
var _ = BeforeSuite(func() {
log.SetOutput(ioutil.Discard)
})
var _ = AfterEach(func() {
mockCtrl.Finish()
})