mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
Fix http proxy
This commit is contained in:
parent
7bfd820739
commit
185d879182
1 changed files with 7 additions and 12 deletions
|
@ -7,8 +7,6 @@ import (
|
||||||
"net"
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/sagernet/sing/common"
|
"github.com/sagernet/sing/common"
|
||||||
"github.com/sagernet/sing/common/auth"
|
"github.com/sagernet/sing/common/auth"
|
||||||
"github.com/sagernet/sing/common/buf"
|
"github.com/sagernet/sing/common/buf"
|
||||||
|
@ -93,22 +91,19 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read
|
||||||
if httpClient == nil {
|
if httpClient == nil {
|
||||||
httpClient = &http.Client{
|
httpClient = &http.Client{
|
||||||
Transport: &http.Transport{
|
Transport: &http.Transport{
|
||||||
MaxIdleConns: 100,
|
DisableCompression: true,
|
||||||
IdleConnTimeout: 90 * time.Second,
|
|
||||||
TLSHandshakeTimeout: 10 * time.Second,
|
|
||||||
ExpectContinueTimeout: 1 * time.Second,
|
|
||||||
DialContext: func(context context.Context, network, address string) (net.Conn, error) {
|
DialContext: func(context context.Context, network, address string) (net.Conn, error) {
|
||||||
metadata.Destination = M.ParseSocksaddr(address)
|
metadata.Destination = M.ParseSocksaddr(address)
|
||||||
metadata.Protocol = "http"
|
metadata.Protocol = "http"
|
||||||
left, right := net.Pipe()
|
input, output := net.Pipe()
|
||||||
go func() {
|
go func() {
|
||||||
err := handler.NewConnection(ctx, right, metadata)
|
hErr := handler.NewConnection(ctx, output, metadata)
|
||||||
if err != nil {
|
if hErr != nil {
|
||||||
innerErr = err
|
innerErr = hErr
|
||||||
common.Close(left, right)
|
common.Close(input, output)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
return left, nil
|
return input, nil
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
CheckRedirect: func(req *http.Request, via []*http.Request) error {
|
CheckRedirect: func(req *http.Request, via []*http.Request) error {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue