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