mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
Merge 08e796079e
into 3464ed3bab
This commit is contained in:
commit
1224025168
1 changed files with 34 additions and 3 deletions
|
@ -56,9 +56,12 @@ func HandleConnectionEx(
|
||||||
}
|
}
|
||||||
if !authOk {
|
if !authOk {
|
||||||
// Since no one else is using the library, use a fixed realm until rewritten
|
// Since no one else is using the library, use a fixed realm until rewritten
|
||||||
err = responseWith(
|
err = responseWithBody(
|
||||||
request, http.StatusProxyAuthRequired,
|
request, http.StatusProxyAuthRequired,
|
||||||
"Proxy-Authenticate", `Basic realm="sing-box" charset="UTF-8"`,
|
"Proxy authentication required",
|
||||||
|
"Content-Type", "text/plain; charset=utf-8",
|
||||||
|
"Proxy-Authenticate", `Basic realm="sing-box", charset="UTF-8"`,
|
||||||
|
"Connection", "close",
|
||||||
).Write(conn)
|
).Write(conn)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
@ -68,7 +71,8 @@ func HandleConnectionEx(
|
||||||
} else if authorization != "" {
|
} else if authorization != "" {
|
||||||
return E.New("http: authentication failed, Proxy-Authorization=", authorization)
|
return E.New("http: authentication failed, Proxy-Authorization=", authorization)
|
||||||
} else {
|
} else {
|
||||||
return E.New("http: authentication failed, no Proxy-Authorization header")
|
//return E.New("http: authentication failed, no Proxy-Authorization header")
|
||||||
|
continue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -270,3 +274,30 @@ func responseWith(request *http.Request, statusCode int, headers ...string) *htt
|
||||||
Header: header,
|
Header: header,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func responseWithBody(request *http.Request, statusCode int, body string, headers ...string) *http.Response {
|
||||||
|
var header http.Header
|
||||||
|
if len(headers) > 0 {
|
||||||
|
header = make(http.Header)
|
||||||
|
for i := 0; i < len(headers); i += 2 {
|
||||||
|
header.Add(headers[i], headers[i+1])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var bodyReadCloser io.ReadCloser
|
||||||
|
var bodyContentLength = int64(0)
|
||||||
|
if body != "" {
|
||||||
|
bodyReadCloser = io.NopCloser(strings.NewReader(body))
|
||||||
|
bodyContentLength = int64(len(body))
|
||||||
|
}
|
||||||
|
return &http.Response{
|
||||||
|
StatusCode: statusCode,
|
||||||
|
Status: http.StatusText(statusCode),
|
||||||
|
Proto: request.Proto,
|
||||||
|
ProtoMajor: request.ProtoMajor,
|
||||||
|
ProtoMinor: request.ProtoMinor,
|
||||||
|
Header: header,
|
||||||
|
Body: bodyReadCloser,
|
||||||
|
ContentLength: bodyContentLength,
|
||||||
|
Close: true,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue