mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Add multi error
This commit is contained in:
parent
f00396c60e
commit
f8356c256f
10 changed files with 141 additions and 102 deletions
|
@ -118,7 +118,7 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read
|
|||
|
||||
response, err := httpClient.Do(request)
|
||||
if err != nil {
|
||||
return common.AnyError(innerErr, err, responseWith(request, http.StatusBadGateway).Write(conn))
|
||||
return E.Errors(innerErr, err, responseWith(request, http.StatusBadGateway).Write(conn))
|
||||
}
|
||||
|
||||
removeHopByHopHeaders(response.Header)
|
||||
|
@ -133,7 +133,7 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read
|
|||
|
||||
err = response.Write(conn)
|
||||
if err != nil {
|
||||
return common.AnyError(innerErr, err)
|
||||
return E.Errors(innerErr, err)
|
||||
}
|
||||
|
||||
if !keepAlive {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue