2021-06-25 23:04:02 +02:00

13 lines
240 B
Go

package websocket
import (
"net"
"time"
)
// GracefulCloseTimeout is the time to wait trying to gracefully close a
// connection before simply cutting it.
var GracefulCloseTimeout = 100 * time.Millisecond
var _ net.Conn = (*Conn)(nil)