mirror of
https://github.com/SagerNet/sing-box.git
synced 2026-06-29 12:11:22 +00:00
16 lines
359 B
Go
16 lines
359 B
Go
//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"
|
|
}
|