├── .gitignore ├── Makefile ├── README.md ├── bsd └── queue.h ├── bsdinet ├── ip.h ├── ip6.h └── tcp.h ├── conntrack.c ├── getos.sh ├── socksify_darwin.c └── socksify_linux.c /.gitignore: -------------------------------------------------------------------------------- 1 | socksify 2 | *.o 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cachefiles/notbevpn/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cachefiles/notbevpn/HEAD/README.md -------------------------------------------------------------------------------- /bsd/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cachefiles/notbevpn/HEAD/bsd/queue.h -------------------------------------------------------------------------------- /bsdinet/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cachefiles/notbevpn/HEAD/bsdinet/ip.h -------------------------------------------------------------------------------- /bsdinet/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cachefiles/notbevpn/HEAD/bsdinet/ip6.h -------------------------------------------------------------------------------- /bsdinet/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cachefiles/notbevpn/HEAD/bsdinet/tcp.h -------------------------------------------------------------------------------- /conntrack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cachefiles/notbevpn/HEAD/conntrack.c -------------------------------------------------------------------------------- /getos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cachefiles/notbevpn/HEAD/getos.sh -------------------------------------------------------------------------------- /socksify_darwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cachefiles/notbevpn/HEAD/socksify_darwin.c -------------------------------------------------------------------------------- /socksify_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cachefiles/notbevpn/HEAD/socksify_linux.c --------------------------------------------------------------------------------