refactor: group flag names related to certificates

This commit is contained in:
Fernandez Ludovic 2026-01-28 03:41:28 +01:00
commit 67811eaa2a

View file

@ -65,11 +65,15 @@ const (
flgKeyType = "key-type"
flgHTTPTimeout = "http-timeout"
flgTLSSkipVerify = "tls-skip-verify"
flgCertTimeout = "cert.timeout"
flgOverallRequestLimit = "overall-request-limit"
flgUserAgent = "user-agent"
)
// Flag names related to certificates.
const (
flgCertTimeout = "cert.timeout"
)
// Flag names related to the network stack.
const (
flgIPv4Only = "ipv4only"