├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── setup.sh ├── sys_utils.h ├── tap_utils.c ├── tap_utils.h ├── vport.c └── vswitch.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | /vport -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peiyuanix/build-your-own-zerotier/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peiyuanix/build-your-own-zerotier/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peiyuanix/build-your-own-zerotier/HEAD/README.md -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peiyuanix/build-your-own-zerotier/HEAD/setup.sh -------------------------------------------------------------------------------- /sys_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peiyuanix/build-your-own-zerotier/HEAD/sys_utils.h -------------------------------------------------------------------------------- /tap_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peiyuanix/build-your-own-zerotier/HEAD/tap_utils.c -------------------------------------------------------------------------------- /tap_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peiyuanix/build-your-own-zerotier/HEAD/tap_utils.h -------------------------------------------------------------------------------- /vport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peiyuanix/build-your-own-zerotier/HEAD/vport.c -------------------------------------------------------------------------------- /vswitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peiyuanix/build-your-own-zerotier/HEAD/vswitch.py --------------------------------------------------------------------------------