mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Fix "Fix http proxy server"
This commit is contained in:
parent
83ce0be4d4
commit
c6a69b4912
1 changed files with 6 additions and 5 deletions
|
@ -28,11 +28,6 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read
|
|||
return E.Cause(err, "read http request")
|
||||
}
|
||||
|
||||
if hostStr := request.Header.Get("Host"); hostStr != "" {
|
||||
request.Host = hostStr
|
||||
request.URL.Host = hostStr
|
||||
}
|
||||
|
||||
if authenticator != nil {
|
||||
var authOk bool
|
||||
authorization := request.Header.Get("Proxy-Authorization")
|
||||
|
@ -89,6 +84,12 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read
|
|||
removeHopByHopHeaders(request.Header)
|
||||
removeExtraHTTPHostPort(request)
|
||||
|
||||
if hostStr := request.Header.Get("Host"); hostStr != "" {
|
||||
if hostStr != request.URL.Host {
|
||||
request.Host = hostStr
|
||||
}
|
||||
}
|
||||
|
||||
if request.URL.Scheme == "" || request.URL.Host == "" {
|
||||
return responseWith(request, http.StatusBadRequest).Write(conn)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue