Files
tailscale/tsconst/ping.go
Simon Law 2de851c428 fixup! net/routecheck: introduce new package for checking peer reachability
@amalscale points out that we already have pingTimeout in magicsock,
so I’ve extracted the default out as a tsconst.

Signed-off-by: Simon Law <sfllaw@tailscale.com>
2026-05-27 15:37:11 -07:00

17 lines
401 B
Go

// Copyright (c) Tailscale Inc & contributors
// SPDX-License-Identifier: BSD-3-Clause
package tsconst
import "time"
const (
// DefaultPingTimeout is the default time we wait for a pong reply
// before assuming it's never coming.
DefaultPingTimeout = 5 * time.Second
// DefaultPingInterval is the default minimum time
// between pings to an endpoint.
DefaultPingInterval = 5 * time.Second
)