gitextract_sxebwusu/ ├── .travis.yml ├── Credits ├── INSTALL ├── LICENSE ├── Makefile.in ├── README.md ├── aclocal.m4 ├── auth.c ├── auth.h ├── cfg_file.l ├── cfg_file.y ├── cfg_kwords.h ├── client.c ├── compat.h ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.in ├── const.h ├── debian/ │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── logrotate │ ├── postinst │ ├── postrm │ ├── prerm │ ├── rules │ ├── source/ │ │ └── format │ └── vtrunkd2.substvars ├── defines.h ├── driver.h ├── frame_llist.c ├── frame_llist.h ├── generic/ │ ├── pipe_dev.c │ ├── pty_dev.c │ ├── tap_dev.c │ ├── tcp_proto.c │ ├── tun_dev.c │ └── udp_proto.c ├── install-sh ├── 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 ├── log.c ├── log.h ├── main.c ├── net_structs.h ├── netlib.c ├── netlib.h ├── netlink_socket_info.c ├── netlink_socket_info.h ├── packages/ │ ├── openwrt/ │ │ └── Makefile │ ├── os-jessie/ │ │ ├── Dockerfile │ │ ├── debian/ │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── files │ │ │ ├── init.d.ex │ │ │ ├── logrotate │ │ │ ├── postinst.ex │ │ │ ├── postrm.ex │ │ │ ├── rules │ │ │ ├── source/ │ │ │ │ └── format │ │ │ └── vtrunkd2.substvars │ │ └── sources.list │ ├── os-trusty/ │ │ ├── Dockerfile │ │ └── debian/ │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── files │ │ ├── init.d.ex │ │ ├── logrotate │ │ ├── postinst.ex │ │ ├── postrm.ex │ │ ├── rules │ │ ├── source/ │ │ │ └── format │ │ └── vtrunkd2.substvars │ ├── os-vivid/ │ │ ├── Dockerfile │ │ ├── debian/ │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── files │ │ │ ├── init.d.ex │ │ │ ├── logrotate │ │ │ ├── postinst.ex │ │ │ ├── postrm.ex │ │ │ ├── rules │ │ │ ├── source/ │ │ │ │ └── format │ │ │ └── vtrunkd2.substvars │ │ └── sources.list │ ├── os-wheezy/ │ │ ├── Dockerfile │ │ ├── debian/ │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── files │ │ │ ├── init.d.ex │ │ │ ├── logrotate │ │ │ ├── postinst.ex │ │ │ ├── postrm.ex │ │ │ ├── rules │ │ │ ├── source/ │ │ │ │ └── format │ │ │ └── vtrunkd2.substvars │ │ └── sources.list │ └── os-wily/ │ ├── Dockerfile │ ├── debian/ │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── files │ │ ├── init.d.ex │ │ ├── logrotate │ │ ├── postinst.ex │ │ ├── postrm.ex │ │ ├── rules │ │ ├── source/ │ │ │ └── format │ │ └── vtrunkd2.substvars │ └── sources.list ├── packet_code.c ├── packet_code.h ├── pid.c ├── pid.h ├── pre-commit ├── scripts/ │ ├── reroute │ ├── rmtree.sh │ ├── vtund-start.conf │ ├── vtund.rc.debian │ ├── vtund.rc.red_hat │ ├── vtund.rc.suse │ ├── vtund.rc.suse.config │ └── vtund.xinetd ├── server.c ├── speed_algo.c ├── speed_algo.h ├── svr4/ │ ├── tap_dev.c │ └── tun_dev.c ├── test/ │ └── lossed.c ├── timer.c ├── timer.h ├── tunnel.c ├── udp_states.c ├── udp_states.h ├── v_struct.h ├── version.h ├── vtrunkd.8 ├── vtrunkd.conf ├── vtrunkd.conf.5 ├── vtrunkd_client.conf ├── vtun.drivers ├── vtun.h └── vtun_socks.h