From e825224b5b9649cdf3e3a71f3eb4b45e846abb3a Mon Sep 17 00:00:00 2001 From: Hristo Venev Date: Thu, 21 Feb 2019 21:27:21 +0000 Subject: [PATCH] Restrict identifier port numbers to 5 digits. --- specification/appendices/identifier_grammar.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/appendices/identifier_grammar.rst b/specification/appendices/identifier_grammar.rst index a0cdf298f..b0d4f6f7a 100644 --- a/specification/appendices/identifier_grammar.rst +++ b/specification/appendices/identifier_grammar.rst @@ -34,7 +34,7 @@ following grammar:: server_name = hostname [ ":" port ] - port = *DIGIT + port = 1*5DIGIT hostname = IPv4address / "[" IPv6address "]" / dns-name