mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 12:27:37 +03:00
Fix HTTP server leak
This commit is contained in:
parent
e727641a98
commit
e0ec961fb1
1 changed files with 21 additions and 22 deletions
|
@ -21,7 +21,6 @@ import (
|
|||
type Handler = N.TCPConnectionHandler
|
||||
|
||||
func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Reader, authenticator auth.Authenticator, handler Handler, metadata M.Metadata) error {
|
||||
var httpClient *http.Client
|
||||
for {
|
||||
request, err := ReadRequest(reader)
|
||||
if err != nil {
|
||||
|
@ -95,8 +94,7 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read
|
|||
}
|
||||
|
||||
var innerErr error
|
||||
if httpClient == nil {
|
||||
httpClient = &http.Client{
|
||||
httpClient := &http.Client{
|
||||
Transport: &http.Transport{
|
||||
DisableCompression: true,
|
||||
DialContext: func(context context.Context, network, address string) (net.Conn, error) {
|
||||
|
@ -117,7 +115,6 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read
|
|||
return http.ErrUseLastResponse
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
response, err := httpClient.Do(request)
|
||||
if err != nil {
|
||||
|
@ -139,6 +136,8 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read
|
|||
return E.Errors(innerErr, err)
|
||||
}
|
||||
|
||||
httpClient.CloseIdleConnections()
|
||||
|
||||
if !keepAlive {
|
||||
return conn.Close()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue