├── .gitignore ├── .travis.yml ├── CoreI ├── Status.go └── Versions.go ├── LICENSE ├── Makefile ├── Process ├── Escort │ └── escort.go ├── UpDownScript │ └── runscript.go └── environment.go ├── README.md ├── VPN ├── oceanDialer.go ├── vpnservice_dnsloopfix.go ├── vpnservice_interact.go └── vpnservice_support.go ├── assertOverwrite.go ├── conf ├── conf_tls_only_vpnservice.json ├── conf_vpnservice.json ├── conf_ws_vpnservice.json └── config_mobile.json ├── configure ├── LibV2Ray.proto ├── LibV2RayConfigure.proto ├── Makefile ├── jsonConvert │ ├── configure.go │ ├── configureFileutli.go │ ├── legacyJsonStructToPb.go │ ├── rendercfg.go │ └── vpnservice_config.go └── stub.go ├── context.go ├── crossLangutli.go ├── developer.go ├── interact.go ├── libv2ray.go ├── qrscan.go ├── sas.go ├── shippedBinarys ├── ArchDep │ ├── 386 │ │ ├── pdnsd │ │ └── tun2socks │ ├── amd64 │ │ ├── pdnsd │ │ └── tun2socks │ ├── arm │ │ ├── pdnsd │ │ └── tun2socks │ └── arm64 │ │ ├── pdnsd │ │ └── tun2socks ├── ArchIndep │ └── pdnsd-te.conf ├── Makefile └── firstrun.go └── stat.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/.travis.yml -------------------------------------------------------------------------------- /CoreI/Status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/CoreI/Status.go -------------------------------------------------------------------------------- /CoreI/Versions.go: -------------------------------------------------------------------------------- 1 | package CoreI 2 | 3 | func CheckVersion() int { 4 | return 27 5 | } 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/Makefile -------------------------------------------------------------------------------- /Process/Escort/escort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/Process/Escort/escort.go -------------------------------------------------------------------------------- /Process/UpDownScript/runscript.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/Process/UpDownScript/runscript.go -------------------------------------------------------------------------------- /Process/environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/Process/environment.go -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/README.md -------------------------------------------------------------------------------- /VPN/oceanDialer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/VPN/oceanDialer.go -------------------------------------------------------------------------------- /VPN/vpnservice_dnsloopfix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/VPN/vpnservice_dnsloopfix.go -------------------------------------------------------------------------------- /VPN/vpnservice_interact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/VPN/vpnservice_interact.go -------------------------------------------------------------------------------- /VPN/vpnservice_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/VPN/vpnservice_support.go -------------------------------------------------------------------------------- /assertOverwrite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/assertOverwrite.go -------------------------------------------------------------------------------- /conf/conf_tls_only_vpnservice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/conf/conf_tls_only_vpnservice.json -------------------------------------------------------------------------------- /conf/conf_vpnservice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/conf/conf_vpnservice.json -------------------------------------------------------------------------------- /conf/conf_ws_vpnservice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/conf/conf_ws_vpnservice.json -------------------------------------------------------------------------------- /conf/config_mobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/conf/config_mobile.json -------------------------------------------------------------------------------- /configure/LibV2Ray.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/configure/LibV2Ray.proto -------------------------------------------------------------------------------- /configure/LibV2RayConfigure.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/configure/LibV2RayConfigure.proto -------------------------------------------------------------------------------- /configure/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/configure/Makefile -------------------------------------------------------------------------------- /configure/jsonConvert/configure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/configure/jsonConvert/configure.go -------------------------------------------------------------------------------- /configure/jsonConvert/configureFileutli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/configure/jsonConvert/configureFileutli.go -------------------------------------------------------------------------------- /configure/jsonConvert/legacyJsonStructToPb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/configure/jsonConvert/legacyJsonStructToPb.go -------------------------------------------------------------------------------- /configure/jsonConvert/rendercfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/configure/jsonConvert/rendercfg.go -------------------------------------------------------------------------------- /configure/jsonConvert/vpnservice_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/configure/jsonConvert/vpnservice_config.go -------------------------------------------------------------------------------- /configure/stub.go: -------------------------------------------------------------------------------- 1 | package configure 2 | -------------------------------------------------------------------------------- /context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/context.go -------------------------------------------------------------------------------- /crossLangutli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/crossLangutli.go -------------------------------------------------------------------------------- /developer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/developer.go -------------------------------------------------------------------------------- /interact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/interact.go -------------------------------------------------------------------------------- /libv2ray.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/libv2ray.go -------------------------------------------------------------------------------- /qrscan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/qrscan.go -------------------------------------------------------------------------------- /sas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/sas.go -------------------------------------------------------------------------------- /shippedBinarys/ArchDep/386/pdnsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/shippedBinarys/ArchDep/386/pdnsd -------------------------------------------------------------------------------- /shippedBinarys/ArchDep/386/tun2socks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/shippedBinarys/ArchDep/386/tun2socks -------------------------------------------------------------------------------- /shippedBinarys/ArchDep/amd64/pdnsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/shippedBinarys/ArchDep/amd64/pdnsd -------------------------------------------------------------------------------- /shippedBinarys/ArchDep/amd64/tun2socks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/shippedBinarys/ArchDep/amd64/tun2socks -------------------------------------------------------------------------------- /shippedBinarys/ArchDep/arm/pdnsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/shippedBinarys/ArchDep/arm/pdnsd -------------------------------------------------------------------------------- /shippedBinarys/ArchDep/arm/tun2socks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/shippedBinarys/ArchDep/arm/tun2socks -------------------------------------------------------------------------------- /shippedBinarys/ArchDep/arm64/pdnsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/shippedBinarys/ArchDep/arm64/pdnsd -------------------------------------------------------------------------------- /shippedBinarys/ArchDep/arm64/tun2socks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/shippedBinarys/ArchDep/arm64/tun2socks -------------------------------------------------------------------------------- /shippedBinarys/ArchIndep/pdnsd-te.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/shippedBinarys/ArchIndep/pdnsd-te.conf -------------------------------------------------------------------------------- /shippedBinarys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/shippedBinarys/Makefile -------------------------------------------------------------------------------- /shippedBinarys/firstrun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/shippedBinarys/firstrun.go -------------------------------------------------------------------------------- /stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaokangwang/AndroidLibV2ray/HEAD/stat.go --------------------------------------------------------------------------------