summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJordan Whited <jordan@tailscale.com>2026-04-13 12:16:08 -0700
committerJordan Whited <jwhited0917@gmail.com>2026-04-13 12:24:59 -0700
commit929ad51be00c7b15ab16c9709581945e1314939a (patch)
treef361c8e2c42362edcce07872f373e5fc575a5f71
parent21880457ebfba14f08f9b0541c4415ee4f915399 (diff)
downloadtailscale-929ad51be00c7b15ab16c9709581945e1314939a.tar.xz
tailscale-929ad51be00c7b15ab16c9709581945e1314939a.zip
cmd/derper: mark rate-config flag as experimental and unstable
Updates tailscale/corp#38509 Signed-off-by: Jordan Whited <jordan@tailscale.com>
-rw-r--r--cmd/derper/derper.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/derper/derper.go b/cmd/derper/derper.go
index 7bca26a6d..b4178c8d0 100644
--- a/cmd/derper/derper.go
+++ b/cmd/derper/derper.go
@@ -87,7 +87,7 @@ var (
acceptConnLimit = flag.Float64("accept-connection-limit", math.Inf(+1), "rate limit for accepting new connection")
acceptConnBurst = flag.Int("accept-connection-burst", math.MaxInt, "burst limit for accepting new connection")
- rateConfigPath = flag.String("rate-config", "", "path to JSON rate limit config file; reloaded on SIGHUP")
+ rateConfigPath = flag.String("rate-config", "", "if non-empty, path to JSON rate limit config file. Rate limiting is experimental and subject to change. Configuration is reloaded on SIGHUP.")
// tcpKeepAlive is intentionally long, to reduce battery cost. There is an L7 keepalive on a higher frequency schedule.
tcpKeepAlive = flag.Duration("tcp-keepalive-time", 10*time.Minute, "TCP keepalive time")