mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 04:17:38 +03:00
Fix the problem of OMM Killer triggered by too many UDP connections
This commit is contained in:
parent
1b3709657f
commit
6fe2b45e99
1 changed files with 3 additions and 0 deletions
|
@ -4,6 +4,7 @@ import (
|
|||
"encoding/binary"
|
||||
"io"
|
||||
"net"
|
||||
"time"
|
||||
|
||||
"github.com/sagernet/sing/common"
|
||||
"github.com/sagernet/sing/common/buf"
|
||||
|
@ -89,6 +90,7 @@ func (c *ServerConn) loopInput() {
|
|||
if err != nil {
|
||||
break
|
||||
}
|
||||
c.SetDeadline(time.Now().Add(2 * time.Minute))
|
||||
}
|
||||
c.Close()
|
||||
}
|
||||
|
@ -105,6 +107,7 @@ func (c *ServerConn) loopOutput() {
|
|||
if err != nil {
|
||||
break
|
||||
}
|
||||
c.SetDeadline(time.Now().Add(2 * time.Minute))
|
||||
if !c.isConnect {
|
||||
err = AddrParser.WriteAddrPort(c.outputWriter, M.SocksaddrFromNet(addr))
|
||||
if err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue