├── .gitignore ├── AndroidManifest.xml ├── LICENSE ├── README.md ├── ServerProxy.iml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── project.properties └── src └── github └── daneren2005 └── serverproxy ├── BufferFile.java ├── BufferProxy.java ├── FileProxy.java ├── ServerProxy.java └── WebProxy.java /.gitignore: -------------------------------------------------------------------------------- 1 | gen/ 2 | .idea/ 3 | build/ 4 | .gradle 5 | *.iml 6 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daneren2005/ServerProxy/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daneren2005/ServerProxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daneren2005/ServerProxy/HEAD/README.md -------------------------------------------------------------------------------- /ServerProxy.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daneren2005/ServerProxy/HEAD/ServerProxy.iml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daneren2005/ServerProxy/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daneren2005/ServerProxy/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daneren2005/ServerProxy/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daneren2005/ServerProxy/HEAD/gradlew.bat -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daneren2005/ServerProxy/HEAD/project.properties -------------------------------------------------------------------------------- /src/github/daneren2005/serverproxy/BufferFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daneren2005/ServerProxy/HEAD/src/github/daneren2005/serverproxy/BufferFile.java -------------------------------------------------------------------------------- /src/github/daneren2005/serverproxy/BufferProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daneren2005/ServerProxy/HEAD/src/github/daneren2005/serverproxy/BufferProxy.java -------------------------------------------------------------------------------- /src/github/daneren2005/serverproxy/FileProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daneren2005/ServerProxy/HEAD/src/github/daneren2005/serverproxy/FileProxy.java -------------------------------------------------------------------------------- /src/github/daneren2005/serverproxy/ServerProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daneren2005/ServerProxy/HEAD/src/github/daneren2005/serverproxy/ServerProxy.java -------------------------------------------------------------------------------- /src/github/daneren2005/serverproxy/WebProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daneren2005/ServerProxy/HEAD/src/github/daneren2005/serverproxy/WebProxy.java --------------------------------------------------------------------------------