This commit is contained in:
shij 2025-03-26 08:53:23 +00:00 committed by GitHub
commit a35b6d146a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,6 +4,7 @@ import (
"encoding/binary" "encoding/binary"
"io" "io"
"net" "net"
"time"
"github.com/sagernet/sing/common/buf" "github.com/sagernet/sing/common/buf"
M "github.com/sagernet/sing/common/metadata" M "github.com/sagernet/sing/common/metadata"
@ -86,6 +87,7 @@ func (c *ServerConn) loopInput() {
if err != nil { if err != nil {
break break
} }
c.SetDeadline(time.Now().Add(2 * time.Minute))
} }
c.Close() c.Close()
} }
@ -100,6 +102,7 @@ func (c *ServerConn) loopOutput() {
if err != nil { if err != nil {
break break
} }
c.SetDeadline(time.Now().Add(2 * time.Minute))
if !c.isConnect { if !c.isConnect {
err = AddrParser.WriteAddrPort(c.outputWriter, M.SocksaddrFromNet(addr)) err = AddrParser.WriteAddrPort(c.outputWriter, M.SocksaddrFromNet(addr))
if err != nil { if err != nil {