├── .gitignore ├── LICENSE ├── README.md ├── core ├── ahriAddr.go ├── ahriClient.go ├── ahriClientPartner.go ├── ahriConn.go ├── ahriFrame.go ├── ahriServer.go ├── ahriSocks5Server.go ├── ahri_guide.md ├── ahri_protocol.md ├── byteArrPool.go ├── const.go ├── describe.go ├── joint.go ├── log.go └── utils.go ├── cross_compile.sh ├── img └── a0.jpg ├── product ├── client │ ├── ahri.hosts │ ├── client.go │ ├── start.sh │ └── stop.sh ├── server │ ├── gen_rsa_keys.sh │ ├── server.go │ ├── start.sh │ └── stop.sh └── version │ └── version.go └── test ├── ahriConn └── app.go ├── log └── app.go ├── rand └── test.go └── secure ├── ase └── app.go └── rsa └── app.go /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/ 3 | *.swp 4 | releases/ 5 | mydoc/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/README.md -------------------------------------------------------------------------------- /core/ahriAddr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/core/ahriAddr.go -------------------------------------------------------------------------------- /core/ahriClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/core/ahriClient.go -------------------------------------------------------------------------------- /core/ahriClientPartner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/core/ahriClientPartner.go -------------------------------------------------------------------------------- /core/ahriConn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/core/ahriConn.go -------------------------------------------------------------------------------- /core/ahriFrame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/core/ahriFrame.go -------------------------------------------------------------------------------- /core/ahriServer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/core/ahriServer.go -------------------------------------------------------------------------------- /core/ahriSocks5Server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/core/ahriSocks5Server.go -------------------------------------------------------------------------------- /core/ahri_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/core/ahri_guide.md -------------------------------------------------------------------------------- /core/ahri_protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/core/ahri_protocol.md -------------------------------------------------------------------------------- /core/byteArrPool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/core/byteArrPool.go -------------------------------------------------------------------------------- /core/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/core/const.go -------------------------------------------------------------------------------- /core/describe.go: -------------------------------------------------------------------------------- 1 | package core 2 | 3 | const Version = "0.9.3" 4 | -------------------------------------------------------------------------------- /core/joint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/core/joint.go -------------------------------------------------------------------------------- /core/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/core/log.go -------------------------------------------------------------------------------- /core/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/core/utils.go -------------------------------------------------------------------------------- /cross_compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/cross_compile.sh -------------------------------------------------------------------------------- /img/a0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/img/a0.jpg -------------------------------------------------------------------------------- /product/client/ahri.hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/product/client/ahri.hosts -------------------------------------------------------------------------------- /product/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/product/client/client.go -------------------------------------------------------------------------------- /product/client/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/product/client/start.sh -------------------------------------------------------------------------------- /product/client/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/product/client/stop.sh -------------------------------------------------------------------------------- /product/server/gen_rsa_keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/product/server/gen_rsa_keys.sh -------------------------------------------------------------------------------- /product/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/product/server/server.go -------------------------------------------------------------------------------- /product/server/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/product/server/start.sh -------------------------------------------------------------------------------- /product/server/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/product/server/stop.sh -------------------------------------------------------------------------------- /product/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/product/version/version.go -------------------------------------------------------------------------------- /test/ahriConn/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/test/ahriConn/app.go -------------------------------------------------------------------------------- /test/log/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/test/log/app.go -------------------------------------------------------------------------------- /test/rand/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/test/rand/test.go -------------------------------------------------------------------------------- /test/secure/ase/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/test/secure/ase/app.go -------------------------------------------------------------------------------- /test/secure/rsa/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinGuan24/ahri/HEAD/test/secure/rsa/app.go --------------------------------------------------------------------------------