├── .gitignore ├── CHANGELOG ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── README_ZH.md ├── VERSION ├── ad.txt ├── blocked ├── config.go ├── direct ├── doc └── images │ ├── 1.1.jpg │ ├── 2.1.png │ ├── 2.2.png │ ├── 5.2.png │ ├── alipay.jpg │ ├── fxdl.png │ ├── http-1.png │ ├── http-2.png │ ├── http-kcp.png │ ├── http-ssh-1.png │ ├── http-tls-2.png │ ├── http-tls-3.png │ ├── logo.jpg │ ├── logo2.png │ ├── socks-2.png │ ├── socks-ssh.png │ ├── socks-tls-2.png │ ├── socks-tls-3.png │ ├── sps-tls.png │ ├── tcp-1.png │ ├── tcp-2.png │ ├── tcp-3.png │ ├── tcp-tls-2.png │ ├── tcp-tls-3.png │ ├── traffic.png │ ├── udp-1.png │ ├── udp-2.png │ ├── udp-3.png │ ├── udp-tls-2.png │ ├── udp-tls-3.png │ ├── wxpay.jpg │ └── zanzhu_capsolver.jpg ├── docker ├── Dockerfile ├── Shanghai ├── build.sh └── ca-certificates.crt ├── docs ├── 404.html ├── categories │ ├── goproxy手册 │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── index.html │ ├── index.xml │ ├── 架构解说 │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── 细说层级 │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ └── 默认分类 │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ └── 1 │ │ └── index.html ├── css │ └── styles.css ├── img │ ├── 1.jpg │ ├── btc.png │ ├── domain-cloudflare │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ └── 8.png │ └── eth.png ├── index.html ├── index.xml ├── manual │ ├── index.html │ ├── manual.md │ └── zh │ │ ├── index.html │ │ └── manual.md ├── page │ ├── 1 │ │ └── index.html │ ├── 2 │ │ └── index.html │ ├── about │ │ └── index.html │ ├── categories │ │ └── index.html │ ├── faq │ │ └── goproxy常见问题解答 │ │ │ └── index.html │ ├── free_vs_commercial │ │ └── index.html │ ├── free_vs_commercial_en │ │ └── index.html │ ├── index.html │ ├── index.xml │ └── page │ │ └── 1 │ │ └── index.html ├── posts │ ├── cloudflare │ │ └── index.html │ ├── domain-cf │ │ └── index.html │ ├── http-nat-cdn │ │ └── index.html │ ├── http_cdn_ws │ │ └── index.html │ ├── index.html │ ├── index.xml │ ├── page │ │ └── 1 │ │ │ └── index.html │ └── windows-global-proxy-using-dns │ │ └── index.html ├── robots.txt ├── sitemap.xml ├── tags │ ├── cdn │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── cloudflare │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── commercial │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── domain │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── index.html │ ├── index.xml │ ├── tcp │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── ws │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── 全局代理 │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── 内网穿透 │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ └── 商业版 │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ └── 1 │ │ └── index.html └── usage │ ├── first │ └── index.html │ ├── index.html │ ├── index.xml │ ├── page │ └── 1 │ │ └── index.html │ └── tcp │ └── index.html ├── dr.txt ├── go.mod ├── gui ├── README.md └── README_ZH.md ├── hosts ├── install.sh ├── install_auto.sh ├── install_auto_commercial.sh ├── install_commercial.sh ├── main.go ├── resolve.rules ├── rewriter.rules ├── rhttp.toml ├── services ├── args.go ├── http.go ├── service.go ├── tcp.go ├── tunnel_bridge.go ├── tunnel_client.go ├── tunnel_server.go └── udp.go ├── uninstall.sh └── utils ├── functions.go ├── io-limiter.go ├── map.go ├── pool.go ├── serve-channel.go └── structs.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/CHANGELOG -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/README.md -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/README_ZH.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 7.6 -------------------------------------------------------------------------------- /ad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/ad.txt -------------------------------------------------------------------------------- /blocked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/blocked -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/config.go -------------------------------------------------------------------------------- /direct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/direct -------------------------------------------------------------------------------- /doc/images/1.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/1.1.jpg -------------------------------------------------------------------------------- /doc/images/2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/2.1.png -------------------------------------------------------------------------------- /doc/images/2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/2.2.png -------------------------------------------------------------------------------- /doc/images/5.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/5.2.png -------------------------------------------------------------------------------- /doc/images/alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/alipay.jpg -------------------------------------------------------------------------------- /doc/images/fxdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/fxdl.png -------------------------------------------------------------------------------- /doc/images/http-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/http-1.png -------------------------------------------------------------------------------- /doc/images/http-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/http-2.png -------------------------------------------------------------------------------- /doc/images/http-kcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/http-kcp.png -------------------------------------------------------------------------------- /doc/images/http-ssh-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/http-ssh-1.png -------------------------------------------------------------------------------- /doc/images/http-tls-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/http-tls-2.png -------------------------------------------------------------------------------- /doc/images/http-tls-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/http-tls-3.png -------------------------------------------------------------------------------- /doc/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/logo.jpg -------------------------------------------------------------------------------- /doc/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/logo2.png -------------------------------------------------------------------------------- /doc/images/socks-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/socks-2.png -------------------------------------------------------------------------------- /doc/images/socks-ssh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/socks-ssh.png -------------------------------------------------------------------------------- /doc/images/socks-tls-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/socks-tls-2.png -------------------------------------------------------------------------------- /doc/images/socks-tls-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/socks-tls-3.png -------------------------------------------------------------------------------- /doc/images/sps-tls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/sps-tls.png -------------------------------------------------------------------------------- /doc/images/tcp-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/tcp-1.png -------------------------------------------------------------------------------- /doc/images/tcp-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/tcp-2.png -------------------------------------------------------------------------------- /doc/images/tcp-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/tcp-3.png -------------------------------------------------------------------------------- /doc/images/tcp-tls-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/tcp-tls-2.png -------------------------------------------------------------------------------- /doc/images/tcp-tls-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/tcp-tls-3.png -------------------------------------------------------------------------------- /doc/images/traffic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/traffic.png -------------------------------------------------------------------------------- /doc/images/udp-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/udp-1.png -------------------------------------------------------------------------------- /doc/images/udp-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/udp-2.png -------------------------------------------------------------------------------- /doc/images/udp-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/udp-3.png -------------------------------------------------------------------------------- /doc/images/udp-tls-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/udp-tls-2.png -------------------------------------------------------------------------------- /doc/images/udp-tls-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/udp-tls-3.png -------------------------------------------------------------------------------- /doc/images/wxpay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/wxpay.jpg -------------------------------------------------------------------------------- /doc/images/zanzhu_capsolver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/doc/images/zanzhu_capsolver.jpg -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Shanghai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docker/Shanghai -------------------------------------------------------------------------------- /docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docker/build.sh -------------------------------------------------------------------------------- /docker/ca-certificates.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docker/ca-certificates.crt -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/categories/goproxy手册/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/categories/goproxy手册/index.html -------------------------------------------------------------------------------- /docs/categories/goproxy手册/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/categories/goproxy手册/index.xml -------------------------------------------------------------------------------- /docs/categories/goproxy手册/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/categories/goproxy手册/page/1/index.html -------------------------------------------------------------------------------- /docs/categories/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/categories/index.html -------------------------------------------------------------------------------- /docs/categories/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/categories/index.xml -------------------------------------------------------------------------------- /docs/categories/架构解说/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/categories/架构解说/index.html -------------------------------------------------------------------------------- /docs/categories/架构解说/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/categories/架构解说/index.xml -------------------------------------------------------------------------------- /docs/categories/架构解说/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/categories/架构解说/page/1/index.html -------------------------------------------------------------------------------- /docs/categories/细说层级/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/categories/细说层级/index.html -------------------------------------------------------------------------------- /docs/categories/细说层级/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/categories/细说层级/index.xml -------------------------------------------------------------------------------- /docs/categories/细说层级/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/categories/细说层级/page/1/index.html -------------------------------------------------------------------------------- /docs/categories/默认分类/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/categories/默认分类/index.html -------------------------------------------------------------------------------- /docs/categories/默认分类/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/categories/默认分类/index.xml -------------------------------------------------------------------------------- /docs/categories/默认分类/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/categories/默认分类/page/1/index.html -------------------------------------------------------------------------------- /docs/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/css/styles.css -------------------------------------------------------------------------------- /docs/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/img/1.jpg -------------------------------------------------------------------------------- /docs/img/btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/img/btc.png -------------------------------------------------------------------------------- /docs/img/domain-cloudflare/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/img/domain-cloudflare/1.png -------------------------------------------------------------------------------- /docs/img/domain-cloudflare/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/img/domain-cloudflare/2.png -------------------------------------------------------------------------------- /docs/img/domain-cloudflare/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/img/domain-cloudflare/3.png -------------------------------------------------------------------------------- /docs/img/domain-cloudflare/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/img/domain-cloudflare/4.png -------------------------------------------------------------------------------- /docs/img/domain-cloudflare/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/img/domain-cloudflare/5.png -------------------------------------------------------------------------------- /docs/img/domain-cloudflare/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/img/domain-cloudflare/6.png -------------------------------------------------------------------------------- /docs/img/domain-cloudflare/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/img/domain-cloudflare/7.png -------------------------------------------------------------------------------- /docs/img/domain-cloudflare/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/img/domain-cloudflare/8.png -------------------------------------------------------------------------------- /docs/img/eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/img/eth.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/index.xml -------------------------------------------------------------------------------- /docs/manual/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/manual/index.html -------------------------------------------------------------------------------- /docs/manual/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/manual/manual.md -------------------------------------------------------------------------------- /docs/manual/zh/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/manual/zh/index.html -------------------------------------------------------------------------------- /docs/manual/zh/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/manual/zh/manual.md -------------------------------------------------------------------------------- /docs/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/page/1/index.html -------------------------------------------------------------------------------- /docs/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/page/2/index.html -------------------------------------------------------------------------------- /docs/page/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/page/about/index.html -------------------------------------------------------------------------------- /docs/page/categories/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/page/categories/index.html -------------------------------------------------------------------------------- /docs/page/faq/goproxy常见问题解答/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/page/faq/goproxy常见问题解答/index.html -------------------------------------------------------------------------------- /docs/page/free_vs_commercial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/page/free_vs_commercial/index.html -------------------------------------------------------------------------------- /docs/page/free_vs_commercial_en/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/page/free_vs_commercial_en/index.html -------------------------------------------------------------------------------- /docs/page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/page/index.html -------------------------------------------------------------------------------- /docs/page/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/page/index.xml -------------------------------------------------------------------------------- /docs/page/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/page/page/1/index.html -------------------------------------------------------------------------------- /docs/posts/cloudflare/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/posts/cloudflare/index.html -------------------------------------------------------------------------------- /docs/posts/domain-cf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/posts/domain-cf/index.html -------------------------------------------------------------------------------- /docs/posts/http-nat-cdn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/posts/http-nat-cdn/index.html -------------------------------------------------------------------------------- /docs/posts/http_cdn_ws/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/posts/http_cdn_ws/index.html -------------------------------------------------------------------------------- /docs/posts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/posts/index.html -------------------------------------------------------------------------------- /docs/posts/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/posts/index.xml -------------------------------------------------------------------------------- /docs/posts/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/posts/page/1/index.html -------------------------------------------------------------------------------- /docs/posts/windows-global-proxy-using-dns/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/posts/windows-global-proxy-using-dns/index.html -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /docs/tags/cdn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/cdn/index.html -------------------------------------------------------------------------------- /docs/tags/cdn/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/cdn/index.xml -------------------------------------------------------------------------------- /docs/tags/cdn/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/cdn/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/cloudflare/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/cloudflare/index.html -------------------------------------------------------------------------------- /docs/tags/cloudflare/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/cloudflare/index.xml -------------------------------------------------------------------------------- /docs/tags/cloudflare/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/cloudflare/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/commercial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/commercial/index.html -------------------------------------------------------------------------------- /docs/tags/commercial/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/commercial/index.xml -------------------------------------------------------------------------------- /docs/tags/commercial/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/commercial/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/domain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/domain/index.html -------------------------------------------------------------------------------- /docs/tags/domain/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/domain/index.xml -------------------------------------------------------------------------------- /docs/tags/domain/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/domain/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/index.html -------------------------------------------------------------------------------- /docs/tags/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/index.xml -------------------------------------------------------------------------------- /docs/tags/tcp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/tcp/index.html -------------------------------------------------------------------------------- /docs/tags/tcp/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/tcp/index.xml -------------------------------------------------------------------------------- /docs/tags/tcp/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/tcp/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/ws/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/ws/index.html -------------------------------------------------------------------------------- /docs/tags/ws/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/ws/index.xml -------------------------------------------------------------------------------- /docs/tags/ws/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/ws/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/全局代理/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/全局代理/index.html -------------------------------------------------------------------------------- /docs/tags/全局代理/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/全局代理/index.xml -------------------------------------------------------------------------------- /docs/tags/全局代理/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/全局代理/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/内网穿透/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/内网穿透/index.html -------------------------------------------------------------------------------- /docs/tags/内网穿透/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/内网穿透/index.xml -------------------------------------------------------------------------------- /docs/tags/内网穿透/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/内网穿透/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/商业版/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/商业版/index.html -------------------------------------------------------------------------------- /docs/tags/商业版/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/商业版/index.xml -------------------------------------------------------------------------------- /docs/tags/商业版/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/tags/商业版/page/1/index.html -------------------------------------------------------------------------------- /docs/usage/first/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/usage/first/index.html -------------------------------------------------------------------------------- /docs/usage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/usage/index.html -------------------------------------------------------------------------------- /docs/usage/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/usage/index.xml -------------------------------------------------------------------------------- /docs/usage/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/usage/page/1/index.html -------------------------------------------------------------------------------- /docs/usage/tcp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/docs/usage/tcp/index.html -------------------------------------------------------------------------------- /dr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/dr.txt -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/go.mod -------------------------------------------------------------------------------- /gui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/gui/README.md -------------------------------------------------------------------------------- /gui/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/gui/README_ZH.md -------------------------------------------------------------------------------- /hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/hosts -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/install.sh -------------------------------------------------------------------------------- /install_auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/install_auto.sh -------------------------------------------------------------------------------- /install_auto_commercial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/install_auto_commercial.sh -------------------------------------------------------------------------------- /install_commercial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/install_commercial.sh -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/main.go -------------------------------------------------------------------------------- /resolve.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/resolve.rules -------------------------------------------------------------------------------- /rewriter.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/rewriter.rules -------------------------------------------------------------------------------- /rhttp.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/rhttp.toml -------------------------------------------------------------------------------- /services/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/services/args.go -------------------------------------------------------------------------------- /services/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/services/http.go -------------------------------------------------------------------------------- /services/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/services/service.go -------------------------------------------------------------------------------- /services/tcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/services/tcp.go -------------------------------------------------------------------------------- /services/tunnel_bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/services/tunnel_bridge.go -------------------------------------------------------------------------------- /services/tunnel_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/services/tunnel_client.go -------------------------------------------------------------------------------- /services/tunnel_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/services/tunnel_server.go -------------------------------------------------------------------------------- /services/udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/services/udp.go -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/uninstall.sh -------------------------------------------------------------------------------- /utils/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/utils/functions.go -------------------------------------------------------------------------------- /utils/io-limiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/utils/io-limiter.go -------------------------------------------------------------------------------- /utils/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/utils/map.go -------------------------------------------------------------------------------- /utils/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/utils/pool.go -------------------------------------------------------------------------------- /utils/serve-channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/utils/serve-channel.go -------------------------------------------------------------------------------- /utils/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snail007/goproxy/HEAD/utils/structs.go --------------------------------------------------------------------------------