Files
sing-box-extended-mirror/protocol/tailscale/tailssh/user_android.go
T

17 lines
359 B
Go
Raw Normal View History

2026-05-28 18:42:58 +08:00
//go:build with_gvisor && android
package tailssh
import (
"github.com/sagernet/sing-box/adapter"
E "github.com/sagernet/sing/common/exceptions"
)
func resolveLocalUserNative(username string) (*adapter.PlatformUser, error) {
return nil, E.New("native user resolution not supported on android")
}
func defaultShell() string {
return "/system/bin/sh"
}