Files
headscale/hscontrol/types/const.go
T
2026-06-17 16:12:19 +02:00

16 lines
276 B
Go

package types
import "time"
const (
HTTPTimeout = 30 * time.Second
HTTPShutdownTimeout = 3 * time.Second
TLSALPN01ChallengeType = "TLS-ALPN-01"
HTTP01ChallengeType = "HTTP-01"
JSONLogFormat = "json"
TextLogFormat = "text"
MaxHostnameLength = 255
)