├── .gitignore ├── Makefile ├── README.md ├── debian ├── changelog ├── compat ├── control ├── copyright ├── install ├── postinst ├── postrm ├── prerm ├── rules └── source │ └── format ├── files ├── etc │ ├── init.d │ │ └── socksproxy │ └── socksproxy.conf └── sbin │ └── socksproxy └── images ├── socksproxy.svg ├── with-socksproxy.png └── without-socksproxy.png /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwiederhier/socksproxy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwiederhier/socksproxy/HEAD/README.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwiederhier/socksproxy/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwiederhier/socksproxy/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- 1 | Files: * 2 | Copyright: 2015 Philipp Heckel 3 | License: GPL-3 4 | -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwiederhier/socksproxy/HEAD/debian/install -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwiederhier/socksproxy/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwiederhier/socksproxy/HEAD/debian/postrm -------------------------------------------------------------------------------- /debian/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwiederhier/socksproxy/HEAD/debian/prerm -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | export DH_OPTIONS 4 | 5 | %: 6 | dh $@ 7 | 8 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /files/etc/init.d/socksproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwiederhier/socksproxy/HEAD/files/etc/init.d/socksproxy -------------------------------------------------------------------------------- /files/etc/socksproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwiederhier/socksproxy/HEAD/files/etc/socksproxy.conf -------------------------------------------------------------------------------- /files/sbin/socksproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwiederhier/socksproxy/HEAD/files/sbin/socksproxy -------------------------------------------------------------------------------- /images/socksproxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwiederhier/socksproxy/HEAD/images/socksproxy.svg -------------------------------------------------------------------------------- /images/with-socksproxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwiederhier/socksproxy/HEAD/images/with-socksproxy.png -------------------------------------------------------------------------------- /images/without-socksproxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwiederhier/socksproxy/HEAD/images/without-socksproxy.png --------------------------------------------------------------------------------