2026-06-28 11:35:54 +00:00
|
|
|
import HTTPTypes
|
|
|
|
|
|
|
|
|
|
extension HTTPField.Name {
|
|
|
|
|
/// 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-06-28 11:35:54 +00:00
|
|
|
}
|