From be3407abefe60749cce7298003edac868514d8fb Mon Sep 17 00:00:00 2001 From: Guoye Zhang Date: Tue, 16 Jan 2024 14:08:48 -0800 Subject: [PATCH] Add Connect-UDP-Listen --- CONTRIBUTORS.txt | 1 + Sources/HTTPTypes/HTTPFieldName.swift | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt index 98ab39b..b52a1d8 100644 --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -15,6 +15,7 @@ needs to be listed here. - Guoye Zhang - Gwynne Raskind - Jager-yoo +- Max Desiatov - Sergey Dmitriev - Tim Condon <0xTim@users.noreply.github.com> - Tomohiro Kumagai diff --git a/Sources/HTTPTypes/HTTPFieldName.swift b/Sources/HTTPTypes/HTTPFieldName.swift index f6315aa..7b174f2 100644 --- a/Sources/HTTPTypes/HTTPFieldName.swift +++ b/Sources/HTTPTypes/HTTPFieldName.swift @@ -504,4 +504,6 @@ extension HTTPField.Name { static var proxyQUICForwarding: Self { .init(rawName: "Proxy-QUIC-Forwarding", canonicalName: "proxy-quic-forwarding") } /// Proxy-Config-Epoch static var proxyConfigEpoch: Self { .init(rawName: "Proxy-Config-Epoch", canonicalName: "proxy-config-epoch") } + /// Connect-UDP-Listen + static var connectUDPListen: Self { .init(rawName: "Connect-UDP-Listen", canonicalName: "connect-udp-listen") } }