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-03 03:48:25 +00:00
|
|
|
public 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-03 03:48:25 +00:00
|
|
|
public 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-03 03:48:25 +00:00
|
|
|
public static let frameOptions = Self("X-Frame-Options")!
|
2026-06-28 11:35:54 +00:00
|
|
|
}
|