mirror of
https://github.com/SagerNet/sing-shadowsocks.git
synced 2025-04-03 20:07:40 +03:00
Fix none readfrom
This commit is contained in:
parent
1e22882ea8
commit
b941e76915
2 changed files with 13 additions and 9 deletions
14
none.go
14
none.go
|
@ -92,7 +92,7 @@ func (c *noneConn) WriteBuffer(buffer *buf.Buffer) error {
|
|||
}
|
||||
|
||||
func (c *noneConn) ReadFrom(r io.Reader) (n int64, err error) {
|
||||
if c.handshake {
|
||||
if !c.handshake {
|
||||
return bufio.ReadFrom0(c, r)
|
||||
}
|
||||
return bufio.Copy(c.Conn, r)
|
||||
|
@ -106,6 +106,18 @@ func (c *noneConn) RemoteAddr() net.Addr {
|
|||
return c.destination.TCPAddr()
|
||||
}
|
||||
|
||||
func (c *noneConn) Upstream() any {
|
||||
return c.Conn
|
||||
}
|
||||
|
||||
func (c *noneConn) ReaderReplaceable() bool {
|
||||
return true
|
||||
}
|
||||
|
||||
func (c *noneConn) WriterReplaceable() bool {
|
||||
return c.handshake
|
||||
}
|
||||
|
||||
type nonePacketConn struct {
|
||||
net.Conn
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue