Add name to errors from v2ray HTTP transports

This commit is contained in:
世界 2024-07-01 23:19:42 +08:00
parent 8a17043502
commit 94707dfcdd
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 4 additions and 4 deletions

View file

@ -43,7 +43,7 @@ func (c *HTTPConn) Read(b []byte) (n int, err error) {
return 0, E.Cause(err, "read response")
}
if response.StatusCode != 200 {
return 0, E.New("unexpected status: ", response.Status)
return 0, E.New("v2ray-http: unexpected status: ", response.Status)
}
if cacheLen := reader.Buffered(); cacheLen > 0 {
c.responseCache = buf.NewSize(cacheLen)