add env to disable the receive buffer warning (#3339)

If the env QUIC_GO_DISABLE_RECEIVE_BUFFER_WARNING is set to true
(as defined by strconv.ParseBool()), the receive buffer warning
will not be printed out.
This commit is contained in:
Arash Payan 2022-03-07 06:16:52 -08:00 committed by GitHub
parent 17952f3e06
commit fa070e585e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,6 +9,8 @@ import (
"hash"
"log"
"net"
"os"
"strconv"
"sync"
"time"
@ -122,6 +124,9 @@ func newPacketHandlerMap(
) (packetHandlerManager, error) {
if err := setReceiveBuffer(c, logger); err != nil {
receiveBufferWarningOnce.Do(func() {
if disable, _ := strconv.ParseBool(os.Getenv("QUIC_GO_DISABLE_RECEIVE_BUFFER_WARNING")); disable {
return
}
log.Printf("%s. See https://github.com/lucas-clemente/quic-go/wiki/UDP-Receive-Buffer-Size for details.", err)
})
}