Add libbox wrapper

This commit is contained in:
世界 2022-10-25 12:55:00 +08:00
parent 86e55c5c1c
commit 222196b182
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
30 changed files with 829 additions and 100 deletions

View file

@ -3,13 +3,28 @@ package constant
import (
"os"
"path/filepath"
"strings"
"github.com/sagernet/sing/common/rw"
)
const dirName = "sing-box"
var resourcePaths []string
var (
basePath string
resourcePaths []string
)
func BasePath(name string) string {
if basePath == "" || strings.HasPrefix(name, "/") {
return name
}
return filepath.Join(basePath, name)
}
func SetBasePath(path string) {
basePath = path
}
func FindPath(name string) (string, bool) {
name = os.ExpandEnv(name)