2026-06-28 11:35:54 +00:00
|
|
|
import HTTPTypes
|
|
|
|
|
|
2026-07-23 01:04:37 +00:00
|
|
|
public extension HTTPField.Name {
|
2026-06-28 11:35:54 +00:00
|
|
|
/// The `Permissions-Policy` field name (not provided as a standard `HTTPField.Name`).
|
2026-07-09 23:00:55 +00:00
|
|
|
static let permissionsPolicy = Self("Permissions-Policy")!
|
2026-06-28 11:35:54 +00:00
|
|
|
/// The `Referrer-Policy` field name (not provided as a standard `HTTPField.Name`).
|
2026-07-09 23:00:55 +00:00
|
|
|
static let referrerPolicy = Self("Referrer-Policy")!
|
2026-06-28 11:35:54 +00:00
|
|
|
/// The `X-Frame-Options` field name (not provided as a standard `HTTPField.Name`).
|
2026-07-09 23:00:55 +00:00
|
|
|
static let frameOptions = Self("X-Frame-Options")!
|
2026-07-23 01:04:37 +00:00
|
|
|
/// The `X-Forwarded-For` field name (not provided as a standard `HTTPField.Name`).
|
|
|
|
|
static let xForwardedFor = Self("X-Forwarded-For")!
|
2026-08-22 23:00:23 +00:00
|
|
|
/// The `X-Forwarded-Proto` field name (not provided as a standard `HTTPField.Name`).
|
|
|
|
|
static let xForwardedProto = Self("X-Forwarded-Proto")!
|
2026-06-28 11:35:54 +00:00
|
|
|
}
|