Fix missing HandshakeConn interface

This commit is contained in:
世界 2023-08-11 19:19:55 +08:00
parent ea4a972acd
commit dc1639b520
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 28 additions and 0 deletions

View file

@ -32,6 +32,10 @@ func newProtocolConn(conn net.Conn, request Request) net.Conn {
}
}
func (c *protocolConn) NeedHandshake() bool {
return !c.requestWritten
}
func (c *protocolConn) Write(p []byte) (n int, err error) {
if c.requestWritten {
return c.Conn.Write(p)