mirror of https://github.com/fafhrd91/actix-web
update docs with rfc numbers
This commit is contained in:
parent
fb8ae84dd0
commit
f7871867da
|
@ -6,10 +6,14 @@ use http::header::HeaderName;
|
||||||
|
|
||||||
/// Response header field that indicates how caches have handled that response and its corresponding
|
/// Response header field that indicates how caches have handled that response and its corresponding
|
||||||
/// request.
|
/// request.
|
||||||
|
///
|
||||||
|
/// See [RFC 9211](https://www.rfc-editor.org/rfc/rfc9211) for full semantics.
|
||||||
pub const CACHE_STATUS: HeaderName = HeaderName::from_static("cache-status");
|
pub const CACHE_STATUS: HeaderName = HeaderName::from_static("cache-status");
|
||||||
|
|
||||||
/// Response header field that allows origin servers to control the behavior of CDN caches
|
/// Response header field that allows origin servers to control the behavior of CDN caches
|
||||||
/// interposed between them and clients separately from other caches that might handle the response.
|
/// interposed between them and clients separately from other caches that might handle the response.
|
||||||
|
///
|
||||||
|
/// See [RFC 9213](https://www.rfc-editor.org/rfc/rfc9213) for full semantics.
|
||||||
pub const CDN_CACHE_CONTROL: HeaderName = HeaderName::from_static("cdn-cache-control");
|
pub const CDN_CACHE_CONTROL: HeaderName = HeaderName::from_static("cdn-cache-control");
|
||||||
|
|
||||||
/// Response header that prevents a document from loading any cross-origin resources that don't
|
/// Response header that prevents a document from loading any cross-origin resources that don't
|
||||||
|
|
|
@ -55,8 +55,9 @@ pub use self::{
|
||||||
|
|
||||||
// re-export list is explicit so that any updates to `http` do not conflict with this set
|
// re-export list is explicit so that any updates to `http` do not conflict with this set
|
||||||
pub use self::common::{
|
pub use self::common::{
|
||||||
CROSS_ORIGIN_EMBEDDER_POLICY, CROSS_ORIGIN_OPENER_POLICY, CROSS_ORIGIN_RESOURCE_POLICY,
|
CACHE_STATUS, CDN_CACHE_CONTROL, CROSS_ORIGIN_EMBEDDER_POLICY, CROSS_ORIGIN_OPENER_POLICY,
|
||||||
PERMISSIONS_POLICY, X_FORWARDED_FOR, X_FORWARDED_HOST, X_FORWARDED_PROTO,
|
CROSS_ORIGIN_RESOURCE_POLICY, PERMISSIONS_POLICY, X_FORWARDED_FOR, X_FORWARDED_HOST,
|
||||||
|
X_FORWARDED_PROTO,
|
||||||
};
|
};
|
||||||
|
|
||||||
/// An interface for types that already represent a valid header.
|
/// An interface for types that already represent a valid header.
|
||||||
|
|
Loading…
Reference in New Issue