├── .github ├── update_dependencies.sh └── workflows │ ├── debug.yml │ └── lint.yml ├── .gitignore ├── .golangci.yml ├── Makefile ├── README.md ├── cmd └── v2box │ ├── command_migrate.go │ ├── command_migrate_geoip.go │ ├── command_migrate_geosite.go │ ├── command_run.go │ ├── command_version.go │ └── main.go ├── go.mod ├── go.sum ├── types ├── v2rayjson │ ├── common.go │ ├── dns.go │ ├── geo_resources.go │ ├── inbound.go │ ├── outbound.go │ ├── rule.go │ └── v2ray.go └── xrayjson │ ├── common.go │ ├── dns.go │ ├── inbound.go │ ├── outbound.go │ ├── rule.go │ └── v2ray.go └── v2box.go /.github/update_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/.github/update_dependencies.sh -------------------------------------------------------------------------------- /.github/workflows/debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/.github/workflows/debug.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/.golangci.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/README.md -------------------------------------------------------------------------------- /cmd/v2box/command_migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/cmd/v2box/command_migrate.go -------------------------------------------------------------------------------- /cmd/v2box/command_migrate_geoip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/cmd/v2box/command_migrate_geoip.go -------------------------------------------------------------------------------- /cmd/v2box/command_migrate_geosite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/cmd/v2box/command_migrate_geosite.go -------------------------------------------------------------------------------- /cmd/v2box/command_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/cmd/v2box/command_run.go -------------------------------------------------------------------------------- /cmd/v2box/command_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/cmd/v2box/command_version.go -------------------------------------------------------------------------------- /cmd/v2box/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/cmd/v2box/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/go.sum -------------------------------------------------------------------------------- /types/v2rayjson/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/types/v2rayjson/common.go -------------------------------------------------------------------------------- /types/v2rayjson/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/types/v2rayjson/dns.go -------------------------------------------------------------------------------- /types/v2rayjson/geo_resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/types/v2rayjson/geo_resources.go -------------------------------------------------------------------------------- /types/v2rayjson/inbound.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/types/v2rayjson/inbound.go -------------------------------------------------------------------------------- /types/v2rayjson/outbound.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/types/v2rayjson/outbound.go -------------------------------------------------------------------------------- /types/v2rayjson/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/types/v2rayjson/rule.go -------------------------------------------------------------------------------- /types/v2rayjson/v2ray.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/types/v2rayjson/v2ray.go -------------------------------------------------------------------------------- /types/xrayjson/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/types/xrayjson/common.go -------------------------------------------------------------------------------- /types/xrayjson/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/types/xrayjson/dns.go -------------------------------------------------------------------------------- /types/xrayjson/inbound.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/types/xrayjson/inbound.go -------------------------------------------------------------------------------- /types/xrayjson/outbound.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/types/xrayjson/outbound.go -------------------------------------------------------------------------------- /types/xrayjson/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/types/xrayjson/rule.go -------------------------------------------------------------------------------- /types/xrayjson/v2ray.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/types/xrayjson/v2ray.go -------------------------------------------------------------------------------- /v2box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagerNet/v2box/HEAD/v2box.go --------------------------------------------------------------------------------