mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
http: remove confusing comments and dead code
This commit is contained in:
parent
791cee8a8e
commit
56fee6835a
@ -90,17 +90,7 @@ fn (resp mut Response) free() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn (req mut Request) add_header(key, val string) {
|
pub fn (req mut Request) add_header(key, val string) {
|
||||||
// println('start add header')
|
|
||||||
// println('add header "$key" "$val"')
|
|
||||||
// println(key)
|
|
||||||
// println(val)
|
|
||||||
// h := '$key: $val'
|
|
||||||
// println('SET H')
|
|
||||||
// req.headers << h
|
|
||||||
req.headers[key] = val
|
req.headers[key] = val
|
||||||
// mut h := req.h
|
|
||||||
// h += ' -H "${key}: ${val}" '
|
|
||||||
// req.h = h
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn parse_headers(lines []string) map[string]string {
|
pub fn parse_headers(lines []string) map[string]string {
|
||||||
@ -122,9 +112,6 @@ pub fn (req &Request) do() ?Response {
|
|||||||
if req.typ == 'POST' {
|
if req.typ == 'POST' {
|
||||||
// req.headers << 'Content-Type: application/x-www-form-urlencoded'
|
// req.headers << 'Content-Type: application/x-www-form-urlencoded'
|
||||||
}
|
}
|
||||||
for key, val in req.headers {
|
|
||||||
//h := '$key: $val'
|
|
||||||
}
|
|
||||||
url := urllib.parse(req.url) or { return error('http.request.do: invalid URL "$req.url"') }
|
url := urllib.parse(req.url) or { return error('http.request.do: invalid URL "$req.url"') }
|
||||||
mut rurl := url
|
mut rurl := url
|
||||||
mut resp := Response{}
|
mut resp := Response{}
|
||||||
|
Loading…
Reference in New Issue
Block a user