├── .gitignore ├── Makefile ├── dep ├── ini.c └── ini.h ├── extras ├── openwrt-build └── openwrt-init ├── intf.h ├── intf ├── intf_dummy.c ├── intf_tuntap.c └── intf_udp.c ├── main.c ├── modules.c ├── modules.h ├── naclkeypair.c ├── pack.c ├── pack.h ├── proto.h ├── proto ├── proto_nacl0.c ├── proto_nacltai.c └── proto_raw.c ├── sigmavpn.1 ├── tai.c ├── tai.h └── types.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | /sigmavpn 3 | /naclkeypair 4 | *.exe 5 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/Makefile -------------------------------------------------------------------------------- /dep/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/dep/ini.c -------------------------------------------------------------------------------- /dep/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/dep/ini.h -------------------------------------------------------------------------------- /extras/openwrt-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/extras/openwrt-build -------------------------------------------------------------------------------- /extras/openwrt-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/extras/openwrt-init -------------------------------------------------------------------------------- /intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/intf.h -------------------------------------------------------------------------------- /intf/intf_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/intf/intf_dummy.c -------------------------------------------------------------------------------- /intf/intf_tuntap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/intf/intf_tuntap.c -------------------------------------------------------------------------------- /intf/intf_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/intf/intf_udp.c -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/main.c -------------------------------------------------------------------------------- /modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/modules.c -------------------------------------------------------------------------------- /modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/modules.h -------------------------------------------------------------------------------- /naclkeypair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/naclkeypair.c -------------------------------------------------------------------------------- /pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/pack.c -------------------------------------------------------------------------------- /pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/pack.h -------------------------------------------------------------------------------- /proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/proto.h -------------------------------------------------------------------------------- /proto/proto_nacl0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/proto/proto_nacl0.c -------------------------------------------------------------------------------- /proto/proto_nacltai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/proto/proto_nacltai.c -------------------------------------------------------------------------------- /proto/proto_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/proto/proto_raw.c -------------------------------------------------------------------------------- /sigmavpn.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/sigmavpn.1 -------------------------------------------------------------------------------- /tai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/tai.c -------------------------------------------------------------------------------- /tai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/tai.h -------------------------------------------------------------------------------- /types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neilalexander/sigmavpn/HEAD/types.h --------------------------------------------------------------------------------