chore(tun): show error on unsupported platform

This commit is contained in:
Haruue 2024-03-20 22:09:03 +08:00
parent 2e93c12cdc
commit b287020daa
No known key found for this signature in database
GPG key ID: F6083B28CBCBC148

View file

@ -9,6 +9,8 @@ import (
"net"
"net/netip"
"os"
"runtime"
"slices"
"strconv"
"strings"
"time"
@ -684,6 +686,10 @@ func clientTCPRedirect(config tcpRedirectConfig, c client.Client) error {
}
func clientTUN(config tunConfig, c client.Client) error {
supportedPlatforms := []string{"linux", "darwin", "windows", "android"}
if !slices.Contains(supportedPlatforms, runtime.GOOS) {
logger.Error("TUN is not supported on this platform", zap.String("platform", runtime.GOOS))
}
if config.Name == "" {
return configError{Field: "name", Err: errors.New("name is empty")}
}