mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 03:47:39 +03:00
Fix HandshakeFailure usages
This commit is contained in:
parent
b4300eaa6a
commit
b8b3759826
4 changed files with 11 additions and 10 deletions
|
@ -5,6 +5,7 @@ package tun
|
|||
import (
|
||||
"context"
|
||||
"net"
|
||||
"os"
|
||||
"time"
|
||||
|
||||
"github.com/sagernet/gvisor/pkg/tcpip"
|
||||
|
@ -64,7 +65,7 @@ func (c *gLazyConn) HandshakeContext(ctx context.Context) error {
|
|||
|
||||
func (c *gLazyConn) HandshakeFailure(err error) error {
|
||||
if c.handshakeDone {
|
||||
return nil
|
||||
return os.ErrInvalid
|
||||
}
|
||||
c.request.Complete(err != ErrDrop)
|
||||
c.handshakeDone = true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue