Fix system stack

This commit is contained in:
世界 2025-07-21 09:44:17 +08:00
parent 0310956cc0
commit ebbe32588c
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 0 additions and 38 deletions

View file

@ -2,7 +2,6 @@ package tun
import (
"errors"
"net"
"os"
"path/filepath"
@ -32,7 +31,3 @@ func fixWindowsFirewall() error {
func retryableListenError(err error) bool {
return errors.Is(err, windows.WSAEADDRNOTAVAIL)
}
func acceptConn(conn net.Conn) error {
return nil
}