Update readfrom0 usage

This commit is contained in:
世界 2022-05-28 22:51:35 +08:00
parent c8403614f5
commit 77a38dfcfc
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
7 changed files with 13 additions and 10 deletions

View file

@ -22,6 +22,7 @@ import (
"github.com/sagernet/sing-shadowsocks/shadowaead_2022/wg_replay"
"github.com/sagernet/sing/common"
"github.com/sagernet/sing/common/buf"
"github.com/sagernet/sing/common/bufio"
E "github.com/sagernet/sing/common/exceptions"
M "github.com/sagernet/sing/common/metadata"
N "github.com/sagernet/sing/common/network"
@ -407,7 +408,7 @@ func (c *clientConn) Write(p []byte) (n int, err error) {
func (c *clientConn) ReadFrom(r io.Reader) (n int64, err error) {
if c.writer == nil {
return rw.ReadFrom0(c, r)
return bufio.ReadFrom0(c, r)
}
return c.writer.ReadFrom(r)
}