mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 12:57:38 +03:00
Fix udp nat
This commit is contained in:
parent
8d95ae4cff
commit
b4b6c838d1
11 changed files with 144 additions and 331 deletions
|
@ -36,6 +36,8 @@ import (
|
|||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
const udpTimeout = 5 * 60
|
||||
|
||||
type flags struct {
|
||||
Server string `json:"server"`
|
||||
ServerPort uint16 `json:"server_port"`
|
||||
|
@ -256,7 +258,7 @@ func newClient(f *flags) (*client, error) {
|
|||
bind = netip.IPv6Unspecified()
|
||||
}
|
||||
|
||||
c.Listener = mixed.NewListener(netip.AddrPortFrom(bind, f.LocalPort), nil, transproxyMode, c)
|
||||
c.Listener = mixed.NewListener(netip.AddrPortFrom(bind, f.LocalPort), nil, transproxyMode, udpTimeout, c)
|
||||
|
||||
if f.Bypass != "" {
|
||||
err := geoip.LoadMMDB("Country.mmdb")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue