mirror of
https://github.com/SagerNet/sing-shadowsocks.git
synced 2025-04-04 12:27:39 +03:00
Add early conn interface
This commit is contained in:
parent
769c01d6bb
commit
59babbdfa5
2 changed files with 8 additions and 0 deletions
|
@ -227,6 +227,10 @@ func (c *clientConn) ReadFrom(r io.Reader) (n int64, err error) {
|
||||||
return c.writer.ReadFrom(r)
|
return c.writer.ReadFrom(r)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *clientConn) NeedHandshake() bool {
|
||||||
|
return c.writer == nil
|
||||||
|
}
|
||||||
|
|
||||||
func (c *clientConn) Upstream() any {
|
func (c *clientConn) Upstream() any {
|
||||||
return c.Conn
|
return c.Conn
|
||||||
}
|
}
|
||||||
|
|
|
@ -456,6 +456,10 @@ func (c *clientConn) ReadFrom(r io.Reader) (n int64, err error) {
|
||||||
return bufio.Copy(c.writer, r)
|
return bufio.Copy(c.writer, r)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *clientConn) NeedHandshake() bool {
|
||||||
|
return c.writer == nil
|
||||||
|
}
|
||||||
|
|
||||||
func (c *clientConn) Upstream() any {
|
func (c *clientConn) Upstream() any {
|
||||||
return c.Conn
|
return c.Conn
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue