mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Fix http proxy server
This commit is contained in:
parent
32f9f628a0
commit
221477cf17
1 changed files with 5 additions and 0 deletions
|
@ -28,6 +28,11 @@ 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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue