mirror of
https://github.com/asciimoo/wuzz
synced 2024-11-10 13:10:29 +00:00
38 lines
533 B
Go
38 lines
533 B
Go
package main
|
|
|
|
var REQUEST_HEADERS = []string{
|
|
"Accept",
|
|
"Accept-Charset",
|
|
"Accept-Encoding",
|
|
"Accept-Language",
|
|
"Accept-Datetime",
|
|
"Authorization",
|
|
"Cache-Control",
|
|
"Connection",
|
|
"Cookie",
|
|
"Content-Length",
|
|
"Content-MD5",
|
|
"Content-Type",
|
|
"Date",
|
|
"Expect",
|
|
"Forwarded",
|
|
"From",
|
|
"Host",
|
|
"If-Match",
|
|
"If-Modified-Since",
|
|
"If-None-Match",
|
|
"If-Range",
|
|
"If-Unmodified-Since",
|
|
"Max-Forwards",
|
|
"Origin",
|
|
"Pragma",
|
|
"Proxy-Authorization",
|
|
"Range",
|
|
"Referer",
|
|
"TE",
|
|
"User-Agent",
|
|
"Upgrade",
|
|
"Via",
|
|
"Warning",
|
|
}
|