mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 03:47:39 +03:00
Retry system listen
This commit is contained in:
parent
c3a3f8141f
commit
07278fb470
3 changed files with 32 additions and 2 deletions
|
@ -1,10 +1,13 @@
|
|||
package tun
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
||||
"github.com/sagernet/sing-tun/internal/winfw"
|
||||
|
||||
"golang.org/x/sys/windows"
|
||||
)
|
||||
|
||||
func fixWindowsFirewall() error {
|
||||
|
@ -23,3 +26,7 @@ func fixWindowsFirewall() error {
|
|||
_, err = winfw.FirewallRuleAddAdvanced(rule)
|
||||
return err
|
||||
}
|
||||
|
||||
func retryableListenError(err error) bool {
|
||||
return errors.Is(err, windows.WSAEADDRNOTAVAIL)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue