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

@ -12,7 +12,6 @@ import (
"github.com/sagernet/sing/common/bufio"
M "github.com/sagernet/sing/common/metadata"
N "github.com/sagernet/sing/common/network"
"github.com/sagernet/sing/common/rw"
"github.com/sagernet/sing/common/udpnat"
)
@ -72,6 +71,7 @@ func (c *noneConn) clientHandshake() error {
return nil
}
// TODO: add write buffer support
func (c *noneConn) Write(b []byte) (n int, err error) {
if c.handshake {
return c.Conn.Write(b)
@ -97,7 +97,7 @@ func (c *noneConn) ReadFrom(r io.Reader) (n int64, err error) {
c.access.Lock()
if !c.handshake {
c.access.Unlock()
return rw.ReadFrom0(c, r)
return bufio.ReadFrom0(c, r)
}
c.access.Unlock()
}