Minor refactoring

This commit is contained in:
Miroslav Stampar 2015-12-30 12:41:56 +01:00
parent dd8fcaeb43
commit 42066cfb3d

View File

@ -164,8 +164,10 @@ class HTTP_HEADER:
CONTENT_RANGE = "Content-Range" CONTENT_RANGE = "Content-Range"
CONTENT_TYPE = "Content-Type" CONTENT_TYPE = "Content-Type"
COOKIE = "Cookie" COOKIE = "Cookie"
SET_COOKIE = "Set-Cookie" EXPIRES = "Expires"
HOST = "Host" HOST = "Host"
IF_MODIFIED_SINCE = "If-Modified-Since"
LAST_MODIFIED = "Last-Modified"
LOCATION = "Location" LOCATION = "Location"
PRAGMA = "Pragma" PRAGMA = "Pragma"
PROXY_AUTHORIZATION = "Proxy-Authorization" PROXY_AUTHORIZATION = "Proxy-Authorization"
@ -173,9 +175,10 @@ class HTTP_HEADER:
RANGE = "Range" RANGE = "Range"
REFERER = "Referer" REFERER = "Referer"
SERVER = "Server" SERVER = "Server"
USER_AGENT = "User-Agent" SET_COOKIE = "Set-Cookie"
TRANSFER_ENCODING = "Transfer-Encoding" TRANSFER_ENCODING = "Transfer-Encoding"
URI = "URI" URI = "URI"
USER_AGENT = "User-Agent"
VIA = "Via" VIA = "Via"
X_POWERED_BY = "X-Powered-By" X_POWERED_BY = "X-Powered-By"