Fix HandshakeFailure usages

This commit is contained in:
世界 2024-11-14 22:04:31 +08:00
parent b4300eaa6a
commit b8b3759826
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 11 additions and 10 deletions

View file

@ -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