rtsp_types/headers/
constants.rs1use super::HeaderName;
6
7pub const ACCEPT: HeaderName = HeaderName::from_static_str_unchecked("Accept");
8pub const ACCEPT_CREDENTIALS: HeaderName =
9 HeaderName::from_static_str_unchecked("Accept-Credentials");
10pub const ACCEPT_ENCODING: HeaderName = HeaderName::from_static_str_unchecked("Accept-Encoding");
11pub const ACCEPT_LANGUAGE: HeaderName = HeaderName::from_static_str_unchecked("Accept-Language");
12pub const ACCEPT_RANGES: HeaderName = HeaderName::from_static_str_unchecked("Accept-Ranges");
13pub const ALLOW: HeaderName = HeaderName::from_static_str_unchecked("Allow");
14pub const AUTHENTICATION_INFO: HeaderName =
15 HeaderName::from_static_str_unchecked("Authentication-Info");
16pub const AUTHORIZATION: HeaderName = HeaderName::from_static_str_unchecked("Authorization");
17pub const BANDWIDTH: HeaderName = HeaderName::from_static_str_unchecked("Bandwidth");
18pub const BLOCKSIZE: HeaderName = HeaderName::from_static_str_unchecked("Blocksize");
19pub const CACHE_CONTROL: HeaderName = HeaderName::from_static_str_unchecked("Cache-Control");
20pub const CONNECTION: HeaderName = HeaderName::from_static_str_unchecked("Connection");
21pub const CONNECTION_CREDENTIALS: HeaderName =
22 HeaderName::from_static_str_unchecked("Connection-Credentials");
23pub const CONTENT_BASE: HeaderName = HeaderName::from_static_str_unchecked("Content-Base");
24pub const CONTENT_ENCODING: HeaderName = HeaderName::from_static_str_unchecked("Content-Encoding");
25pub const CONTENT_LANGUAGE: HeaderName = HeaderName::from_static_str_unchecked("Content-Language");
26pub const CONTENT_LENGTH: HeaderName = HeaderName::from_static_str_unchecked("Content-Length");
27pub const CONTENT_LOCATION: HeaderName = HeaderName::from_static_str_unchecked("Content-Location");
28pub const CONTENT_TYPE: HeaderName = HeaderName::from_static_str_unchecked("Content-Type");
29pub const CSEQ: HeaderName = HeaderName::from_static_str_unchecked("CSeq");
30pub const DATE: HeaderName = HeaderName::from_static_str_unchecked("Date");
31pub const EXPIRES: HeaderName = HeaderName::from_static_str_unchecked("Expires");
32pub const FROM: HeaderName = HeaderName::from_static_str_unchecked("From");
33pub const IF_MATCH: HeaderName = HeaderName::from_static_str_unchecked("If-Match");
34pub const IF_MODIFIED_SINCE: HeaderName =
35 HeaderName::from_static_str_unchecked("If-Modified-Since");
36pub const IF_NONE_MATCH: HeaderName = HeaderName::from_static_str_unchecked("If-None-Match");
37pub const LAST_MODIFIED: HeaderName = HeaderName::from_static_str_unchecked("Last-Modified");
38pub const LOCATION: HeaderName = HeaderName::from_static_str_unchecked("Location");
39pub const MEDIA_PROPERTIES: HeaderName = HeaderName::from_static_str_unchecked("Media-Properties");
40pub const MEDIA_RANGE: HeaderName = HeaderName::from_static_str_unchecked("Media-Range");
41pub const MTAG: HeaderName = HeaderName::from_static_str_unchecked("MTag");
42pub const NOTIFY_REASON: HeaderName = HeaderName::from_static_str_unchecked("Notify-Reason");
43pub const PIPELINED_REQUESTS: HeaderName =
44 HeaderName::from_static_str_unchecked("Pipelined-Requests");
45pub const PROXY_AUTHENTICATE: HeaderName =
46 HeaderName::from_static_str_unchecked("Proxy-Authenticate");
47pub const PROXY_AUTHENTICATION_INFO: HeaderName =
48 HeaderName::from_static_str_unchecked("Proxy-Authentication-Info");
49pub const PROXY_AUTHORIZATION: HeaderName =
50 HeaderName::from_static_str_unchecked("Proxy-Authorization");
51pub const PROXY_REQUIRE: HeaderName = HeaderName::from_static_str_unchecked("Proxy-Require");
52pub const PROXY_SUPPORTED: HeaderName = HeaderName::from_static_str_unchecked("Proxy-Supported");
53pub const PUBLIC: HeaderName = HeaderName::from_static_str_unchecked("Public");
54pub const RANGE: HeaderName = HeaderName::from_static_str_unchecked("Range");
55pub const REFERRER: HeaderName = HeaderName::from_static_str_unchecked("Referrer");
56pub const REQUEST_STATUS: HeaderName = HeaderName::from_static_str_unchecked("Request-Status");
57pub const REQUIRE: HeaderName = HeaderName::from_static_str_unchecked("Require");
58pub const RETRY_AFTER: HeaderName = HeaderName::from_static_str_unchecked("Retry-After");
59pub const RTP_INFO: HeaderName = HeaderName::from_static_str_unchecked("RTP-Info");
60pub const SCALE: HeaderName = HeaderName::from_static_str_unchecked("Scale");
61pub const SEEK_STYLE: HeaderName = HeaderName::from_static_str_unchecked("Seek-Style");
62pub const SERVER: HeaderName = HeaderName::from_static_str_unchecked("Server");
63pub const SESSION: HeaderName = HeaderName::from_static_str_unchecked("Session");
64pub const SPEED: HeaderName = HeaderName::from_static_str_unchecked("Speed");
65pub const SUPPORTED: HeaderName = HeaderName::from_static_str_unchecked("Supported");
66pub const TERMINATE_REASON: HeaderName = HeaderName::from_static_str_unchecked("Terminate-Reason");
67pub const TIMESTAMP: HeaderName = HeaderName::from_static_str_unchecked("Timestamp");
68pub const TRANSPORT: HeaderName = HeaderName::from_static_str_unchecked("Transport");
69pub const UNSUPPORTED: HeaderName = HeaderName::from_static_str_unchecked("Unsupported");
70pub const USER_AGENT: HeaderName = HeaderName::from_static_str_unchecked("User-Agent");
71pub const VIA: HeaderName = HeaderName::from_static_str_unchecked("Via");
72pub const WWW_AUTHENTICATE: HeaderName = HeaderName::from_static_str_unchecked("WWW-Authenticate");