From ddb0af36bb311d3989e3c873ea7d9a08700c7b4f Mon Sep 17 00:00:00 2001 From: maze Date: Fri, 10 Oct 2025 12:43:04 +0200 Subject: [PATCH] Docfix: what is that backslash doing there? --- protocol/detect_tls.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol/detect_tls.go b/protocol/detect_tls.go index 5623504..7030ce9 100644 --- a/protocol/detect_tls.go +++ b/protocol/detect_tls.go @@ -140,7 +140,7 @@ func detectTLS(dir Direction, data []byte, _, _ int) (proto *Protocol, confidenc // ALPNProtocol is a map of TLS Application-Layer Protocol Negotiation (ALPN) Protocol identifier to [Protocol]. // -// See https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml#alpn-protocol-ids\ +// See https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml#alpn-protocol-ids var ALPNProtocol = map[string]*Protocol{ "acme-tls/1": {Type: TypeACME, Encapsulation: TypeTLS, Version: Version{Major: 1}}, // ACME-TLS/1 "co": {Type: TypeCoAP, Encapsulation: TypeTLS}, // CoAP (over DTLS)