mirror of
https://github.com/bytedance/g3.git
synced 2026-05-19 16:28:21 +00:00
18 lines
356 B
Bash
18 lines
356 B
Bash
#!/bin/sh
|
|
|
|
|
|
HTTP_PROXY="http://127.0.0.1:9000"
|
|
test_http_proxy_http_forward
|
|
# FTP not supported in proxy escaper
|
|
#test_http_proxy_ftp_over_http
|
|
test_http_proxy_https_connect
|
|
test_http_proxy_https_forward
|
|
|
|
|
|
SOCKS5_PROXY="socks5h://127.0.0.1:9000"
|
|
test_socks5_proxy_http
|
|
test_socks5_proxy_dns
|
|
|
|
|
|
SOCKS4_PROXY="socks4a://127.0.0.1:9000"
|
|
test_socks4_proxy_http
|