├── .gitignore ├── README.md ├── cmd └── ascf │ ├── build.bat │ └── main.go ├── hosts.go ├── http302.go ├── log.go ├── lookup.go └── tcpproxy.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.exe 3 | cmd/ascf/builds 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makazeu/AnotherSteamCommunityFix/HEAD/README.md -------------------------------------------------------------------------------- /cmd/ascf/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makazeu/AnotherSteamCommunityFix/HEAD/cmd/ascf/build.bat -------------------------------------------------------------------------------- /cmd/ascf/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makazeu/AnotherSteamCommunityFix/HEAD/cmd/ascf/main.go -------------------------------------------------------------------------------- /hosts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makazeu/AnotherSteamCommunityFix/HEAD/hosts.go -------------------------------------------------------------------------------- /http302.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makazeu/AnotherSteamCommunityFix/HEAD/http302.go -------------------------------------------------------------------------------- /log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makazeu/AnotherSteamCommunityFix/HEAD/log.go -------------------------------------------------------------------------------- /lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makazeu/AnotherSteamCommunityFix/HEAD/lookup.go -------------------------------------------------------------------------------- /tcpproxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makazeu/AnotherSteamCommunityFix/HEAD/tcpproxy.go --------------------------------------------------------------------------------