mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Fix http client
This commit is contained in:
parent
6c2116b204
commit
c875a4ffab
1 changed files with 14 additions and 8 deletions
|
@ -65,30 +65,36 @@ func (c *Client) DialContext(ctx context.Context, network string, destination M.
|
|||
}
|
||||
err = request.Write(conn)
|
||||
if err != nil {
|
||||
conn.Close()
|
||||
return nil, err
|
||||
}
|
||||
reader := std_bufio.NewReader(conn)
|
||||
response, err := http.ReadResponse(reader, request)
|
||||
if err != nil {
|
||||
conn.Close()
|
||||
return nil, err
|
||||
}
|
||||
switch response.StatusCode {
|
||||
case http.StatusOK:
|
||||
if response.StatusCode == http.StatusOK {
|
||||
if reader.Buffered() > 0 {
|
||||
buffer := buf.NewSize(reader.Buffered())
|
||||
_, err = buffer.ReadFullFrom(reader, buffer.FreeLen())
|
||||
if err != nil {
|
||||
conn.Close()
|
||||
return nil, err
|
||||
}
|
||||
conn = bufio.NewCachedConn(conn, buffer)
|
||||
}
|
||||
return conn, nil
|
||||
case http.StatusProxyAuthRequired:
|
||||
return nil, E.New("authentication required")
|
||||
case http.StatusMethodNotAllowed:
|
||||
return nil, E.New("method not allowed")
|
||||
default:
|
||||
return nil, E.New("unexpected status: ", response.Status)
|
||||
} else {
|
||||
conn.Close()
|
||||
switch response.StatusCode {
|
||||
case http.StatusProxyAuthRequired:
|
||||
return nil, E.New("authentication required")
|
||||
case http.StatusMethodNotAllowed:
|
||||
return nil, E.New("method not allowed")
|
||||
default:
|
||||
return nil, E.New("unexpected status: ", response.Status)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue