mirror of
https://github.com/SagerNet/sing-shadowsocks.git
synced 2025-04-04 12:27:39 +03:00
Update readfrom0 usage
This commit is contained in:
parent
c8403614f5
commit
77a38dfcfc
7 changed files with 13 additions and 10 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue