├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── release.yml ├── .gitignore ├── .travis.yml ├── Dockerfile.npc ├── Dockerfile.nps ├── LICENSE ├── Makefile ├── README.md ├── README_zh.md ├── bridge └── bridge.go ├── client ├── client.go ├── control.go ├── health.go ├── local.go └── register.go ├── cmd ├── npc │ ├── npc.go │ └── sdk.go └── nps │ └── nps.go ├── conf ├── clients.json ├── hosts.json ├── multi_account.conf ├── npc.conf ├── nps.conf ├── server.key ├── server.pem └── tasks.json ├── docs ├── .nojekyll ├── README.md ├── _coverpage.md ├── _navbar.md ├── _sidebar.md ├── api.md ├── contribute.md ├── description.md ├── discuss.md ├── donate.md ├── example.md ├── faq.md ├── feature.md ├── index.html ├── install.md ├── introduction.md ├── logo.png ├── logo.svg ├── npc_extend.md ├── npc_sdk.md ├── nps_extend.md ├── nps_use.md ├── run.md ├── server_config.md ├── thanks.md ├── use.md ├── webapi.md └── windows_client_service_configuration.png ├── go.mod ├── go.sum ├── gui └── npc │ ├── AndroidManifest.xml │ └── npc.go ├── image ├── cpu1.png ├── cpu2.png ├── donation_wx.png ├── donation_zfb.png ├── http.png ├── httpProxy.png ├── qps.png ├── sock5.png ├── speed.png ├── tcp.png ├── udp.png ├── web.png ├── web2.png └── work_flow.svg ├── lib ├── cache │ └── lru.go ├── common │ ├── const.go │ ├── logs.go │ ├── netpackager.go │ ├── pool.go │ ├── pprof.go │ ├── run.go │ └── util.go ├── config │ ├── config.go │ └── config_test.go ├── conn │ ├── conn.go │ ├── link.go │ ├── listener.go │ └── snappy.go ├── crypt │ ├── clientHello.go │ ├── crypt.go │ └── tls.go ├── daemon │ ├── daemon.go │ └── reload.go ├── file │ ├── db.go │ ├── file.go │ ├── obj.go │ └── sort.go ├── goroutine │ └── pool.go ├── install │ └── install.go ├── pmux │ ├── pconn.go │ ├── plistener.go │ ├── pmux.go │ └── pmux_test.go ├── rate │ ├── conn.go │ └── rate.go ├── sheap │ └── heap.go └── version │ └── version.go ├── server ├── connection │ └── connection.go ├── proxy │ ├── base.go │ ├── http.go │ ├── https.go │ ├── p2p.go │ ├── socks5.go │ ├── tcp.go │ ├── transport.go │ ├── transport_windows.go │ └── udp.go ├── server.go ├── test │ └── test.go └── tool │ └── utils.go └── web ├── controllers ├── auth.go ├── base.go ├── client.go ├── index.go └── login.go ├── routers └── router.go ├── static ├── css │ ├── bootstrap-table.min.css │ ├── bootstrap.min.css │ ├── datatables.css │ ├── fontawesome.min.css │ ├── regular.min.css │ ├── solid.min.css │ └── style.css ├── img │ └── flag │ │ ├── en-US.png │ │ └── zh-CN.png ├── js │ ├── bootstrap-table-locale-all.min.js │ ├── bootstrap-table.min.js │ ├── bootstrap.min.js │ ├── echarts.min.js │ ├── fontawesome.min.js │ ├── inspinia.js │ ├── jquery-3.4.1.min.js │ ├── language.js │ └── popper.min.js ├── page │ ├── error.html │ └── languages.xml └── webfonts │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 └── views ├── client ├── add.html ├── edit.html └── list.html ├── index ├── add.html ├── edit.html ├── hadd.html ├── hedit.html ├── help.html ├── hlist.html ├── index.html └── list.html ├── login ├── index.html └── register.html └── public ├── error.html └── layout.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | nps 3 | npc 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile.npc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/Dockerfile.npc -------------------------------------------------------------------------------- /Dockerfile.nps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/Dockerfile.nps -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/README_zh.md -------------------------------------------------------------------------------- /bridge/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/bridge/bridge.go -------------------------------------------------------------------------------- /client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/client/client.go -------------------------------------------------------------------------------- /client/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/client/control.go -------------------------------------------------------------------------------- /client/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/client/health.go -------------------------------------------------------------------------------- /client/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/client/local.go -------------------------------------------------------------------------------- /client/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/client/register.go -------------------------------------------------------------------------------- /cmd/npc/npc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/cmd/npc/npc.go -------------------------------------------------------------------------------- /cmd/npc/sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/cmd/npc/sdk.go -------------------------------------------------------------------------------- /cmd/nps/nps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/cmd/nps/nps.go -------------------------------------------------------------------------------- /conf/clients.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conf/hosts.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conf/multi_account.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/conf/multi_account.conf -------------------------------------------------------------------------------- /conf/npc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/conf/npc.conf -------------------------------------------------------------------------------- /conf/nps.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/conf/nps.conf -------------------------------------------------------------------------------- /conf/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/conf/server.key -------------------------------------------------------------------------------- /conf/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/conf/server.pem -------------------------------------------------------------------------------- /conf/tasks.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_coverpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/_coverpage.md -------------------------------------------------------------------------------- /docs/_navbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/_navbar.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/contribute.md -------------------------------------------------------------------------------- /docs/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/description.md -------------------------------------------------------------------------------- /docs/discuss.md: -------------------------------------------------------------------------------- 1 | # 交流群 2 | 3 | ![二维码.jpeg](https://i.loli.net/2019/02/15/5c66c32a42074.jpeg) 4 | -------------------------------------------------------------------------------- /docs/donate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/donate.md -------------------------------------------------------------------------------- /docs/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/example.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/feature.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/introduction.md -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /docs/npc_extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/npc_extend.md -------------------------------------------------------------------------------- /docs/npc_sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/npc_sdk.md -------------------------------------------------------------------------------- /docs/nps_extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/nps_extend.md -------------------------------------------------------------------------------- /docs/nps_use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/nps_use.md -------------------------------------------------------------------------------- /docs/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/run.md -------------------------------------------------------------------------------- /docs/server_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/server_config.md -------------------------------------------------------------------------------- /docs/thanks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/thanks.md -------------------------------------------------------------------------------- /docs/use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/use.md -------------------------------------------------------------------------------- /docs/webapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/webapi.md -------------------------------------------------------------------------------- /docs/windows_client_service_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/docs/windows_client_service_configuration.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/go.sum -------------------------------------------------------------------------------- /gui/npc/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/gui/npc/AndroidManifest.xml -------------------------------------------------------------------------------- /gui/npc/npc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/gui/npc/npc.go -------------------------------------------------------------------------------- /image/cpu1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/image/cpu1.png -------------------------------------------------------------------------------- /image/cpu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/image/cpu2.png -------------------------------------------------------------------------------- /image/donation_wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/image/donation_wx.png -------------------------------------------------------------------------------- /image/donation_zfb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/image/donation_zfb.png -------------------------------------------------------------------------------- /image/http.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/image/http.png -------------------------------------------------------------------------------- /image/httpProxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/image/httpProxy.png -------------------------------------------------------------------------------- /image/qps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/image/qps.png -------------------------------------------------------------------------------- /image/sock5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/image/sock5.png -------------------------------------------------------------------------------- /image/speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/image/speed.png -------------------------------------------------------------------------------- /image/tcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/image/tcp.png -------------------------------------------------------------------------------- /image/udp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/image/udp.png -------------------------------------------------------------------------------- /image/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/image/web.png -------------------------------------------------------------------------------- /image/web2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/image/web2.png -------------------------------------------------------------------------------- /image/work_flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/image/work_flow.svg -------------------------------------------------------------------------------- /lib/cache/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/cache/lru.go -------------------------------------------------------------------------------- /lib/common/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/common/const.go -------------------------------------------------------------------------------- /lib/common/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/common/logs.go -------------------------------------------------------------------------------- /lib/common/netpackager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/common/netpackager.go -------------------------------------------------------------------------------- /lib/common/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/common/pool.go -------------------------------------------------------------------------------- /lib/common/pprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/common/pprof.go -------------------------------------------------------------------------------- /lib/common/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/common/run.go -------------------------------------------------------------------------------- /lib/common/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/common/util.go -------------------------------------------------------------------------------- /lib/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/config/config.go -------------------------------------------------------------------------------- /lib/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/config/config_test.go -------------------------------------------------------------------------------- /lib/conn/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/conn/conn.go -------------------------------------------------------------------------------- /lib/conn/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/conn/link.go -------------------------------------------------------------------------------- /lib/conn/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/conn/listener.go -------------------------------------------------------------------------------- /lib/conn/snappy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/conn/snappy.go -------------------------------------------------------------------------------- /lib/crypt/clientHello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/crypt/clientHello.go -------------------------------------------------------------------------------- /lib/crypt/crypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/crypt/crypt.go -------------------------------------------------------------------------------- /lib/crypt/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/crypt/tls.go -------------------------------------------------------------------------------- /lib/daemon/daemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/daemon/daemon.go -------------------------------------------------------------------------------- /lib/daemon/reload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/daemon/reload.go -------------------------------------------------------------------------------- /lib/file/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/file/db.go -------------------------------------------------------------------------------- /lib/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/file/file.go -------------------------------------------------------------------------------- /lib/file/obj.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/file/obj.go -------------------------------------------------------------------------------- /lib/file/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/file/sort.go -------------------------------------------------------------------------------- /lib/goroutine/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/goroutine/pool.go -------------------------------------------------------------------------------- /lib/install/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/install/install.go -------------------------------------------------------------------------------- /lib/pmux/pconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/pmux/pconn.go -------------------------------------------------------------------------------- /lib/pmux/plistener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/pmux/plistener.go -------------------------------------------------------------------------------- /lib/pmux/pmux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/pmux/pmux.go -------------------------------------------------------------------------------- /lib/pmux/pmux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/pmux/pmux_test.go -------------------------------------------------------------------------------- /lib/rate/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/rate/conn.go -------------------------------------------------------------------------------- /lib/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/rate/rate.go -------------------------------------------------------------------------------- /lib/sheap/heap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/sheap/heap.go -------------------------------------------------------------------------------- /lib/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/lib/version/version.go -------------------------------------------------------------------------------- /server/connection/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/server/connection/connection.go -------------------------------------------------------------------------------- /server/proxy/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/server/proxy/base.go -------------------------------------------------------------------------------- /server/proxy/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/server/proxy/http.go -------------------------------------------------------------------------------- /server/proxy/https.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/server/proxy/https.go -------------------------------------------------------------------------------- /server/proxy/p2p.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/server/proxy/p2p.go -------------------------------------------------------------------------------- /server/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/server/proxy/socks5.go -------------------------------------------------------------------------------- /server/proxy/tcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/server/proxy/tcp.go -------------------------------------------------------------------------------- /server/proxy/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/server/proxy/transport.go -------------------------------------------------------------------------------- /server/proxy/transport_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/server/proxy/transport_windows.go -------------------------------------------------------------------------------- /server/proxy/udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/server/proxy/udp.go -------------------------------------------------------------------------------- /server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/server/server.go -------------------------------------------------------------------------------- /server/test/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/server/test/test.go -------------------------------------------------------------------------------- /server/tool/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/server/tool/utils.go -------------------------------------------------------------------------------- /web/controllers/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/controllers/auth.go -------------------------------------------------------------------------------- /web/controllers/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/controllers/base.go -------------------------------------------------------------------------------- /web/controllers/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/controllers/client.go -------------------------------------------------------------------------------- /web/controllers/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/controllers/index.go -------------------------------------------------------------------------------- /web/controllers/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/controllers/login.go -------------------------------------------------------------------------------- /web/routers/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/routers/router.go -------------------------------------------------------------------------------- /web/static/css/bootstrap-table.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/css/bootstrap-table.min.css -------------------------------------------------------------------------------- /web/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /web/static/css/datatables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/css/datatables.css -------------------------------------------------------------------------------- /web/static/css/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/css/fontawesome.min.css -------------------------------------------------------------------------------- /web/static/css/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/css/regular.min.css -------------------------------------------------------------------------------- /web/static/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/css/solid.min.css -------------------------------------------------------------------------------- /web/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/css/style.css -------------------------------------------------------------------------------- /web/static/img/flag/en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/img/flag/en-US.png -------------------------------------------------------------------------------- /web/static/img/flag/zh-CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/img/flag/zh-CN.png -------------------------------------------------------------------------------- /web/static/js/bootstrap-table-locale-all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/js/bootstrap-table-locale-all.min.js -------------------------------------------------------------------------------- /web/static/js/bootstrap-table.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/js/bootstrap-table.min.js -------------------------------------------------------------------------------- /web/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /web/static/js/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/js/echarts.min.js -------------------------------------------------------------------------------- /web/static/js/fontawesome.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/js/fontawesome.min.js -------------------------------------------------------------------------------- /web/static/js/inspinia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/js/inspinia.js -------------------------------------------------------------------------------- /web/static/js/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/js/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /web/static/js/language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/js/language.js -------------------------------------------------------------------------------- /web/static/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/js/popper.min.js -------------------------------------------------------------------------------- /web/static/page/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/page/error.html -------------------------------------------------------------------------------- /web/static/page/languages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/page/languages.xml -------------------------------------------------------------------------------- /web/static/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /web/static/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /web/static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /web/static/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /web/static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /web/views/client/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/views/client/add.html -------------------------------------------------------------------------------- /web/views/client/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/views/client/edit.html -------------------------------------------------------------------------------- /web/views/client/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/views/client/list.html -------------------------------------------------------------------------------- /web/views/index/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/views/index/add.html -------------------------------------------------------------------------------- /web/views/index/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/views/index/edit.html -------------------------------------------------------------------------------- /web/views/index/hadd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/views/index/hadd.html -------------------------------------------------------------------------------- /web/views/index/hedit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/views/index/hedit.html -------------------------------------------------------------------------------- /web/views/index/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/views/index/help.html -------------------------------------------------------------------------------- /web/views/index/hlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/views/index/hlist.html -------------------------------------------------------------------------------- /web/views/index/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/views/index/index.html -------------------------------------------------------------------------------- /web/views/index/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/views/index/list.html -------------------------------------------------------------------------------- /web/views/login/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/views/login/index.html -------------------------------------------------------------------------------- /web/views/login/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/views/login/register.html -------------------------------------------------------------------------------- /web/views/public/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/views/public/error.html -------------------------------------------------------------------------------- /web/views/public/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jireh012/nps/HEAD/web/views/public/layout.html --------------------------------------------------------------------------------