cmd/derper: set a write timeout

Signed-off-by: David Crawshaw <crawshaw@tailscale.com>
This commit is contained in:
David Crawshaw 2020-03-12 11:15:45 -04:00
parent 9cd899f83e
commit efbb4f2b66
1 changed files with 1 additions and 0 deletions

View File

@ -119,6 +119,7 @@ func main() {
letsEncrypt := tsweb.IsProd443(*addr)
s := derp.NewServer(key.Private(cfg.PrivateKey), log.Printf)
s.WriteTimeout = 2 * time.Second
if *mbps != 0 {
s.BytesPerSecond = (*mbps << 20) / 8
}