Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions Sources/HTTPTypes/HTTPFieldName.swift
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,11 @@ extension HTTPField.Name {
/// https://www.rfc-editor.org/rfc/rfc9110.html
public static var proxyAuthorization: Self { .init(rawName: "Proxy-Authorization", canonicalName: "proxy-authorization") }

/// Proxy-Status
///
/// https://www.rfc-editor.org/rfc/rfc9209.html
public static var proxyStatus: Self { .init(rawName: "Proxy-Status", canonicalName: "proxy-status") }

/// Range
///
/// https://www.rfc-editor.org/rfc/rfc9110.html
Expand Down Expand Up @@ -532,8 +537,6 @@ extension HTTPField.Name {
static var secCHGeohash: Self { .init(rawName: "Sec-CH-Geohash", canonicalName: "sec-ch-geohash") }
/// Client-Geohash
static var clientGeohash: Self { .init(rawName: "Client-Geohash", canonicalName: "client-geohash") }
/// Proxy-Status
static var proxyStatus: Self { .init(rawName: "Proxy-Status", canonicalName: "proxy-status") }
/// Proxy-QUIC-Forwarding
static var proxyQUICForwarding: Self { .init(rawName: "Proxy-QUIC-Forwarding", canonicalName: "proxy-quic-forwarding") }
/// Proxy-Config-Epoch
Expand Down