mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
Fix http client
This commit is contained in:
parent
6c2116b204
commit
c875a4ffab
1 changed files with 14 additions and 8 deletions
|
@ -65,24 +65,29 @@ 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
|
||||
} else {
|
||||
conn.Close()
|
||||
switch response.StatusCode {
|
||||
case http.StatusProxyAuthRequired:
|
||||
return nil, E.New("authentication required")
|
||||
case http.StatusMethodNotAllowed:
|
||||
|
@ -91,6 +96,7 @@ func (c *Client) DialContext(ctx context.Context, network string, destination M.
|
|||
return nil, E.New("unexpected status: ", response.Status)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func (c *Client) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
|
||||
return nil, os.ErrInvalid
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue