Fix http client

This commit is contained in:
世界 2023-03-03 13:20:48 +08:00
parent 6c2116b204
commit c875a4ffab
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -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)
}
}
}