mirror of
https://github.com/SagerNet/sing-mux.git
synced 2025-04-04 20:37:44 +03:00
Fix missing HandshakeConn interface
This commit is contained in:
parent
ea4a972acd
commit
dc1639b520
3 changed files with 28 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue