├── .github └── workflows │ └── release.yml ├── .gitignore ├── .goreleaser.yaml ├── LICENSE ├── Makefile ├── README.md ├── assets ├── FAQ.md ├── tcpdumpCapture.png ├── uaProxy.png └── wireshark.png ├── bootstrap ├── config_loader.go └── ua_record.go ├── go.mod ├── go.sum ├── handle ├── handle.go ├── tools.go ├── tools_linux.go ├── tools_others.go └── tools_test.go ├── main.go └── shell ├── ipk ├── postinstall.sh ├── postremove.sh ├── preinstall.sh └── preremove.sh ├── uaProxy.procd └── uaProxy.service /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/README.md -------------------------------------------------------------------------------- /assets/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/assets/FAQ.md -------------------------------------------------------------------------------- /assets/tcpdumpCapture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/assets/tcpdumpCapture.png -------------------------------------------------------------------------------- /assets/uaProxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/assets/uaProxy.png -------------------------------------------------------------------------------- /assets/wireshark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/assets/wireshark.png -------------------------------------------------------------------------------- /bootstrap/config_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/bootstrap/config_loader.go -------------------------------------------------------------------------------- /bootstrap/ua_record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/bootstrap/ua_record.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/go.sum -------------------------------------------------------------------------------- /handle/handle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/handle/handle.go -------------------------------------------------------------------------------- /handle/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/handle/tools.go -------------------------------------------------------------------------------- /handle/tools_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/handle/tools_linux.go -------------------------------------------------------------------------------- /handle/tools_others.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/handle/tools_others.go -------------------------------------------------------------------------------- /handle/tools_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/handle/tools_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/main.go -------------------------------------------------------------------------------- /shell/ipk/postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/shell/ipk/postinstall.sh -------------------------------------------------------------------------------- /shell/ipk/postremove.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /shell/ipk/preinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/shell/ipk/preinstall.sh -------------------------------------------------------------------------------- /shell/ipk/preremove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/shell/ipk/preremove.sh -------------------------------------------------------------------------------- /shell/uaProxy.procd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/shell/uaProxy.procd -------------------------------------------------------------------------------- /shell/uaProxy.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huhu415/uaProxy/HEAD/shell/uaProxy.service --------------------------------------------------------------------------------