├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── COPYING ├── INSTALL ├── LICENSE ├── Makefile.in ├── README.md ├── autogen.sh ├── community.list ├── config.guess ├── configure.seed ├── contributors.txt ├── doc ├── Crypto.md ├── HACKING ├── IPv6.md ├── MTU.md ├── Routing.md ├── Windows.md ├── macOS.md ├── n2n_gateway.sh ├── new-features.md └── rpm-packaging.md ├── edge.8 ├── include ├── edge_utils_win32.h ├── header_encryption.h ├── lzoconf.h ├── lzodefs.h ├── minilzo.h ├── n2n.h ├── n2n_define.h ├── n2n_transforms.h ├── n2n_wire.h ├── pearson.h ├── portable_endian.h ├── random_numbers.h ├── speck.h ├── twofish.h └── uthash.h ├── legacy ├── README.md ├── edge_keyschedule.c ├── gen_keyfile.py ├── n2n_keyfile.c ├── n2n_keyfile.h ├── transform_aes.c └── transform_tf.c ├── n2n.7 ├── packages ├── centos ├── debian │ ├── Makefile.in │ ├── README │ ├── configure │ ├── configure.in │ └── debian │ │ ├── COPYRIGHT │ │ ├── README │ │ ├── changelog.in │ │ ├── compat │ │ ├── conffiles │ │ ├── control.in │ │ ├── dirs │ │ ├── docs │ │ ├── files.in │ │ ├── n2n.debhelper.log │ │ ├── n2n.postrm.debhelper │ │ ├── n2n.substvars │ │ ├── postinst │ │ ├── postrm │ │ ├── preinst │ │ ├── prerm │ │ ├── rules.in │ │ └── templates ├── etc │ ├── n2n │ │ ├── edge.conf.sample │ │ └── supernode.conf.sample │ └── systemd │ │ └── system │ │ ├── edge-ntopng@.service.in │ │ ├── edge.service.in │ │ ├── edge@.service.in │ │ └── supernode.service.in ├── openwrt │ ├── Makefile │ ├── README.md │ └── etc │ │ └── init.d │ │ ├── edge │ │ └── supernode ├── rpm │ ├── Makefile.in │ ├── configure │ ├── configure.in │ ├── n2n.spec.in │ └── rpm-sign.exp └── ubuntu ├── src ├── edge.c ├── edge_utils.c ├── edge_utils_win32.c ├── example_edge_embed.c ├── example_edge_embed_quick_edge_init.c ├── example_sn_embed.c ├── header_encryption.c ├── minilzo.c ├── n2n.c ├── pearson.c ├── random_numbers.c ├── sn.c ├── sn_utils.c ├── speck.c ├── transform_aes.c ├── transform_cc20.c ├── transform_null.c ├── transform_speck.c ├── transform_tf.c ├── tuntap_freebsd.c ├── tuntap_linux.c ├── tuntap_netbsd.c ├── tuntap_osx.c ├── twofish.c └── wire.c ├── supernode.1 ├── tools ├── Makefile.in ├── benchmark.c └── n2n_decode.c ├── win32 ├── CMakeLists.txt ├── DotNet │ ├── n2n.sln │ ├── n2n.suo │ ├── n2n.vcproj │ └── supernode.vcproj ├── getopt.c ├── getopt.h ├── getopt1.c ├── n2n_win32.h ├── version-msvc.c ├── winconfig.h ├── wintap.c └── wintap.h └── wireshark ├── README.md └── n2n.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/autogen.sh -------------------------------------------------------------------------------- /community.list: -------------------------------------------------------------------------------- 1 | # 2 | # List of allowed communities 3 | # 4 | mynetwork 5 | netleo 6 | -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/config.guess -------------------------------------------------------------------------------- /configure.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/configure.seed -------------------------------------------------------------------------------- /contributors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/contributors.txt -------------------------------------------------------------------------------- /doc/Crypto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/doc/Crypto.md -------------------------------------------------------------------------------- /doc/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/doc/HACKING -------------------------------------------------------------------------------- /doc/IPv6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/doc/IPv6.md -------------------------------------------------------------------------------- /doc/MTU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/doc/MTU.md -------------------------------------------------------------------------------- /doc/Routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/doc/Routing.md -------------------------------------------------------------------------------- /doc/Windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/doc/Windows.md -------------------------------------------------------------------------------- /doc/macOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/doc/macOS.md -------------------------------------------------------------------------------- /doc/n2n_gateway.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/doc/n2n_gateway.sh -------------------------------------------------------------------------------- /doc/new-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/doc/new-features.md -------------------------------------------------------------------------------- /doc/rpm-packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/doc/rpm-packaging.md -------------------------------------------------------------------------------- /edge.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/edge.8 -------------------------------------------------------------------------------- /include/edge_utils_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/include/edge_utils_win32.h -------------------------------------------------------------------------------- /include/header_encryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/include/header_encryption.h -------------------------------------------------------------------------------- /include/lzoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/include/lzoconf.h -------------------------------------------------------------------------------- /include/lzodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/include/lzodefs.h -------------------------------------------------------------------------------- /include/minilzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/include/minilzo.h -------------------------------------------------------------------------------- /include/n2n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/include/n2n.h -------------------------------------------------------------------------------- /include/n2n_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/include/n2n_define.h -------------------------------------------------------------------------------- /include/n2n_transforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/include/n2n_transforms.h -------------------------------------------------------------------------------- /include/n2n_wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/include/n2n_wire.h -------------------------------------------------------------------------------- /include/pearson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/include/pearson.h -------------------------------------------------------------------------------- /include/portable_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/include/portable_endian.h -------------------------------------------------------------------------------- /include/random_numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/include/random_numbers.h -------------------------------------------------------------------------------- /include/speck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/include/speck.h -------------------------------------------------------------------------------- /include/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/include/twofish.h -------------------------------------------------------------------------------- /include/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/include/uthash.h -------------------------------------------------------------------------------- /legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/legacy/README.md -------------------------------------------------------------------------------- /legacy/edge_keyschedule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/legacy/edge_keyschedule.c -------------------------------------------------------------------------------- /legacy/gen_keyfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/legacy/gen_keyfile.py -------------------------------------------------------------------------------- /legacy/n2n_keyfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/legacy/n2n_keyfile.c -------------------------------------------------------------------------------- /legacy/n2n_keyfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/legacy/n2n_keyfile.h -------------------------------------------------------------------------------- /legacy/transform_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/legacy/transform_aes.c -------------------------------------------------------------------------------- /legacy/transform_tf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/legacy/transform_tf.c -------------------------------------------------------------------------------- /n2n.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/n2n.7 -------------------------------------------------------------------------------- /packages/centos: -------------------------------------------------------------------------------- 1 | rpm -------------------------------------------------------------------------------- /packages/debian/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/debian/Makefile.in -------------------------------------------------------------------------------- /packages/debian/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/debian/README -------------------------------------------------------------------------------- /packages/debian/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/debian/configure -------------------------------------------------------------------------------- /packages/debian/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/debian/configure.in -------------------------------------------------------------------------------- /packages/debian/debian/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/debian/debian/COPYRIGHT -------------------------------------------------------------------------------- /packages/debian/debian/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/debian/debian/README -------------------------------------------------------------------------------- /packages/debian/debian/changelog.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/debian/debian/changelog.in -------------------------------------------------------------------------------- /packages/debian/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /packages/debian/debian/conffiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/debian/debian/conffiles -------------------------------------------------------------------------------- /packages/debian/debian/control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/debian/debian/control.in -------------------------------------------------------------------------------- /packages/debian/debian/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/debian/debian/dirs -------------------------------------------------------------------------------- /packages/debian/debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /packages/debian/debian/files.in: -------------------------------------------------------------------------------- 1 | n2n_@N2N_VERSION_SHORT@_@EXTN@.deb free optional 2 | -------------------------------------------------------------------------------- /packages/debian/debian/n2n.debhelper.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/debian/debian/n2n.debhelper.log -------------------------------------------------------------------------------- /packages/debian/debian/n2n.postrm.debhelper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/debian/debian/n2n.postrm.debhelper -------------------------------------------------------------------------------- /packages/debian/debian/n2n.substvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/debian/debian/n2n.substvars -------------------------------------------------------------------------------- /packages/debian/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/debian/debian/postinst -------------------------------------------------------------------------------- /packages/debian/debian/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/debian/debian/postrm -------------------------------------------------------------------------------- /packages/debian/debian/preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/debian/debian/preinst -------------------------------------------------------------------------------- /packages/debian/debian/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/debian/debian/prerm -------------------------------------------------------------------------------- /packages/debian/debian/rules.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/debian/debian/rules.in -------------------------------------------------------------------------------- /packages/debian/debian/templates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/debian/debian/templates -------------------------------------------------------------------------------- /packages/etc/n2n/edge.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/etc/n2n/edge.conf.sample -------------------------------------------------------------------------------- /packages/etc/n2n/supernode.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/etc/n2n/supernode.conf.sample -------------------------------------------------------------------------------- /packages/etc/systemd/system/edge-ntopng@.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/etc/systemd/system/edge-ntopng@.service.in -------------------------------------------------------------------------------- /packages/etc/systemd/system/edge.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/etc/systemd/system/edge.service.in -------------------------------------------------------------------------------- /packages/etc/systemd/system/edge@.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/etc/systemd/system/edge@.service.in -------------------------------------------------------------------------------- /packages/etc/systemd/system/supernode.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/etc/systemd/system/supernode.service.in -------------------------------------------------------------------------------- /packages/openwrt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/openwrt/Makefile -------------------------------------------------------------------------------- /packages/openwrt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/openwrt/README.md -------------------------------------------------------------------------------- /packages/openwrt/etc/init.d/edge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/openwrt/etc/init.d/edge -------------------------------------------------------------------------------- /packages/openwrt/etc/init.d/supernode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/openwrt/etc/init.d/supernode -------------------------------------------------------------------------------- /packages/rpm/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/rpm/Makefile.in -------------------------------------------------------------------------------- /packages/rpm/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/rpm/configure -------------------------------------------------------------------------------- /packages/rpm/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/rpm/configure.in -------------------------------------------------------------------------------- /packages/rpm/n2n.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/rpm/n2n.spec.in -------------------------------------------------------------------------------- /packages/rpm/rpm-sign.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/packages/rpm/rpm-sign.exp -------------------------------------------------------------------------------- /packages/ubuntu: -------------------------------------------------------------------------------- 1 | debian -------------------------------------------------------------------------------- /src/edge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/edge.c -------------------------------------------------------------------------------- /src/edge_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/edge_utils.c -------------------------------------------------------------------------------- /src/edge_utils_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/edge_utils_win32.c -------------------------------------------------------------------------------- /src/example_edge_embed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/example_edge_embed.c -------------------------------------------------------------------------------- /src/example_edge_embed_quick_edge_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/example_edge_embed_quick_edge_init.c -------------------------------------------------------------------------------- /src/example_sn_embed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/example_sn_embed.c -------------------------------------------------------------------------------- /src/header_encryption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/header_encryption.c -------------------------------------------------------------------------------- /src/minilzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/minilzo.c -------------------------------------------------------------------------------- /src/n2n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/n2n.c -------------------------------------------------------------------------------- /src/pearson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/pearson.c -------------------------------------------------------------------------------- /src/random_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/random_numbers.c -------------------------------------------------------------------------------- /src/sn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/sn.c -------------------------------------------------------------------------------- /src/sn_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/sn_utils.c -------------------------------------------------------------------------------- /src/speck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/speck.c -------------------------------------------------------------------------------- /src/transform_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/transform_aes.c -------------------------------------------------------------------------------- /src/transform_cc20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/transform_cc20.c -------------------------------------------------------------------------------- /src/transform_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/transform_null.c -------------------------------------------------------------------------------- /src/transform_speck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/transform_speck.c -------------------------------------------------------------------------------- /src/transform_tf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/transform_tf.c -------------------------------------------------------------------------------- /src/tuntap_freebsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/tuntap_freebsd.c -------------------------------------------------------------------------------- /src/tuntap_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/tuntap_linux.c -------------------------------------------------------------------------------- /src/tuntap_netbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/tuntap_netbsd.c -------------------------------------------------------------------------------- /src/tuntap_osx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/tuntap_osx.c -------------------------------------------------------------------------------- /src/twofish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/twofish.c -------------------------------------------------------------------------------- /src/wire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/src/wire.c -------------------------------------------------------------------------------- /supernode.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/supernode.1 -------------------------------------------------------------------------------- /tools/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/tools/Makefile.in -------------------------------------------------------------------------------- /tools/benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/tools/benchmark.c -------------------------------------------------------------------------------- /tools/n2n_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/tools/n2n_decode.c -------------------------------------------------------------------------------- /win32/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/win32/CMakeLists.txt -------------------------------------------------------------------------------- /win32/DotNet/n2n.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/win32/DotNet/n2n.sln -------------------------------------------------------------------------------- /win32/DotNet/n2n.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/win32/DotNet/n2n.suo -------------------------------------------------------------------------------- /win32/DotNet/n2n.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/win32/DotNet/n2n.vcproj -------------------------------------------------------------------------------- /win32/DotNet/supernode.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/win32/DotNet/supernode.vcproj -------------------------------------------------------------------------------- /win32/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/win32/getopt.c -------------------------------------------------------------------------------- /win32/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/win32/getopt.h -------------------------------------------------------------------------------- /win32/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/win32/getopt1.c -------------------------------------------------------------------------------- /win32/n2n_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/win32/n2n_win32.h -------------------------------------------------------------------------------- /win32/version-msvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/win32/version-msvc.c -------------------------------------------------------------------------------- /win32/winconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/win32/winconfig.h -------------------------------------------------------------------------------- /win32/wintap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/win32/wintap.c -------------------------------------------------------------------------------- /win32/wintap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/win32/wintap.h -------------------------------------------------------------------------------- /wireshark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/wireshark/README.md -------------------------------------------------------------------------------- /wireshark/n2n.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucktu/wnn2n/HEAD/wireshark/n2n.lua --------------------------------------------------------------------------------