├── .cvsignore ├── .gitignore ├── ChangeLog ├── Credits ├── Makefile.in ├── README ├── README.md ├── TODO ├── aclocal.m4 ├── auth.c ├── auth.h ├── autogen.sh ├── cfg_file.l ├── cfg_file.y ├── cfg_kwords.h ├── client.c ├── compat.h ├── configure.ac ├── driver.h ├── freebsd └── tun_dev.c ├── generic ├── pipe_dev.c ├── pty_dev.c ├── tap_dev.c ├── tcp_proto.c ├── tun_dev.c └── udp_proto.c ├── lfd_encrypt.c ├── lfd_lzo.c ├── lfd_shaper.c ├── lfd_zlib.c ├── lib.c ├── lib.h ├── linkfd.c ├── linkfd.h ├── linux ├── tap_dev.c └── tun_dev.c ├── llist.c ├── llist.h ├── lock.c ├── lock.h ├── main.c ├── netlib.c ├── netlib.h ├── openbsd └── tun_dev.c ├── packages ├── vtun.bsd.pkg ├── vtun.solaris.info └── vtun.spec ├── scripts ├── reroute └── vtund.rc.debian ├── server.c ├── svr4 ├── tap_dev.c └── tun_dev.c ├── tunnel.c ├── vtun.drivers ├── vtun.h ├── vtun_socks.h ├── vtund.8 ├── vtund.conf └── vtund.conf.5 /.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/.cvsignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/ChangeLog -------------------------------------------------------------------------------- /Credits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/Credits -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/TODO -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/auth.c -------------------------------------------------------------------------------- /auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/auth.h -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/autogen.sh -------------------------------------------------------------------------------- /cfg_file.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/cfg_file.l -------------------------------------------------------------------------------- /cfg_file.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/cfg_file.y -------------------------------------------------------------------------------- /cfg_kwords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/cfg_kwords.h -------------------------------------------------------------------------------- /client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/client.c -------------------------------------------------------------------------------- /compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/compat.h -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/configure.ac -------------------------------------------------------------------------------- /driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/driver.h -------------------------------------------------------------------------------- /freebsd/tun_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/freebsd/tun_dev.c -------------------------------------------------------------------------------- /generic/pipe_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/generic/pipe_dev.c -------------------------------------------------------------------------------- /generic/pty_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/generic/pty_dev.c -------------------------------------------------------------------------------- /generic/tap_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/generic/tap_dev.c -------------------------------------------------------------------------------- /generic/tcp_proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/generic/tcp_proto.c -------------------------------------------------------------------------------- /generic/tun_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/generic/tun_dev.c -------------------------------------------------------------------------------- /generic/udp_proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/generic/udp_proto.c -------------------------------------------------------------------------------- /lfd_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/lfd_encrypt.c -------------------------------------------------------------------------------- /lfd_lzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/lfd_lzo.c -------------------------------------------------------------------------------- /lfd_shaper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/lfd_shaper.c -------------------------------------------------------------------------------- /lfd_zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/lfd_zlib.c -------------------------------------------------------------------------------- /lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/lib.c -------------------------------------------------------------------------------- /lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/lib.h -------------------------------------------------------------------------------- /linkfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/linkfd.c -------------------------------------------------------------------------------- /linkfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/linkfd.h -------------------------------------------------------------------------------- /linux/tap_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/linux/tap_dev.c -------------------------------------------------------------------------------- /linux/tun_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/linux/tun_dev.c -------------------------------------------------------------------------------- /llist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/llist.c -------------------------------------------------------------------------------- /llist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/llist.h -------------------------------------------------------------------------------- /lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/lock.c -------------------------------------------------------------------------------- /lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/lock.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/main.c -------------------------------------------------------------------------------- /netlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/netlib.c -------------------------------------------------------------------------------- /netlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/netlib.h -------------------------------------------------------------------------------- /openbsd/tun_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/openbsd/tun_dev.c -------------------------------------------------------------------------------- /packages/vtun.bsd.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/packages/vtun.bsd.pkg -------------------------------------------------------------------------------- /packages/vtun.solaris.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/packages/vtun.solaris.info -------------------------------------------------------------------------------- /packages/vtun.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/packages/vtun.spec -------------------------------------------------------------------------------- /scripts/reroute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/scripts/reroute -------------------------------------------------------------------------------- /scripts/vtund.rc.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/scripts/vtund.rc.debian -------------------------------------------------------------------------------- /server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/server.c -------------------------------------------------------------------------------- /svr4/tap_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/svr4/tap_dev.c -------------------------------------------------------------------------------- /svr4/tun_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/svr4/tun_dev.c -------------------------------------------------------------------------------- /tunnel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/tunnel.c -------------------------------------------------------------------------------- /vtun.drivers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/vtun.drivers -------------------------------------------------------------------------------- /vtun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/vtun.h -------------------------------------------------------------------------------- /vtun_socks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/vtun_socks.h -------------------------------------------------------------------------------- /vtund.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/vtund.8 -------------------------------------------------------------------------------- /vtund.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/vtund.conf -------------------------------------------------------------------------------- /vtund.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/vtun/HEAD/vtund.conf.5 --------------------------------------------------------------------------------