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
|
@ -20,6 +20,10 @@ type clientConn struct {
|
|||
responseRead bool
|
||||
}
|
||||
|
||||
func (c *clientConn) NeedHandshake() bool {
|
||||
return !c.requestWritten
|
||||
}
|
||||
|
||||
func (c *clientConn) readResponse() error {
|
||||
response, err := ReadStreamResponse(c.Conn)
|
||||
if err != nil {
|
||||
|
@ -94,6 +98,10 @@ type clientPacketConn struct {
|
|||
responseRead bool
|
||||
}
|
||||
|
||||
func (c *clientPacketConn) NeedHandshake() bool {
|
||||
return !c.requestWritten
|
||||
}
|
||||
|
||||
func (c *clientPacketConn) readResponse() error {
|
||||
response, err := ReadStreamResponse(c.ExtendedConn)
|
||||
if err != nil {
|
||||
|
@ -276,6 +284,10 @@ type clientPacketAddrConn struct {
|
|||
responseRead bool
|
||||
}
|
||||
|
||||
func (c *clientPacketAddrConn) NeedHandshake() bool {
|
||||
return !c.requestWritten
|
||||
}
|
||||
|
||||
func (c *clientPacketAddrConn) readResponse() error {
|
||||
response, err := ReadStreamResponse(c.ExtendedConn)
|
||||
if err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue