From f07f6cd609ffa87e316a789f2bbb560e4ce10d7d Mon Sep 17 00:00:00 2001 From: Brian Corbin Date: Mon, 27 Nov 2023 09:30:21 -0800 Subject: [PATCH] update default secure port to 443 for T3 URI (#938) --- t3/api/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t3/api/src/lib.rs b/t3/api/src/lib.rs index 8beda7be5..0918e1c43 100644 --- a/t3/api/src/lib.rs +++ b/t3/api/src/lib.rs @@ -29,6 +29,6 @@ impl UriScheme for T3Scheme { const SCHEME_INSECURE: &'static str = "insecure-t3"; /// Default port numbers - const DEFAULT_SECURE_PORT: u16 = 80; + const DEFAULT_SECURE_PORT: u16 = 443; const DEFAULT_INSECURE_PORT: u16 = 8080; }