Add early conn interface

This commit is contained in:
世界 2023-02-26 22:50:24 +08:00
parent 769c01d6bb
commit 59babbdfa5
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 8 additions and 0 deletions

View file

@ -227,6 +227,10 @@ func (c *clientConn) ReadFrom(r io.Reader) (n int64, err error) {
return c.writer.ReadFrom(r)
}
func (c *clientConn) NeedHandshake() bool {
return c.writer == nil
}
func (c *clientConn) Upstream() any {
return c.Conn
}

View file

@ -456,6 +456,10 @@ func (c *clientConn) ReadFrom(r io.Reader) (n int64, err error) {
return bufio.Copy(c.writer, r)
}
func (c *clientConn) NeedHandshake() bool {
return c.writer == nil
}
func (c *clientConn) Upstream() any {
return c.Conn
}