mirror of
https://github.com/Viren070/mediaflow-proxy.git
synced 2025-12-01 23:22:12 +01:00
25 lines
416 B
Python
25 lines
416 B
Python
SUPPORTED_RESPONSE_HEADERS = [
|
|
"accept-ranges",
|
|
"content-type",
|
|
"content-length",
|
|
"content-range",
|
|
"connection",
|
|
"transfer-encoding",
|
|
"last-modified",
|
|
"etag",
|
|
"cache-control",
|
|
"expires",
|
|
]
|
|
|
|
SUPPORTED_REQUEST_HEADERS = [
|
|
"accept",
|
|
"accept-encoding",
|
|
"accept-language",
|
|
"connection",
|
|
"range",
|
|
"if-range",
|
|
"user-agent",
|
|
"referer",
|
|
"origin",
|
|
]
|