├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── config.h ├── macros.h ├── test ├── testclient.c └── testserver.c ├── utils.c ├── utils.h ├── voidnsrun.c └── voidnsundo.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gch1p/voidnsrun/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gch1p/voidnsrun/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gch1p/voidnsrun/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gch1p/voidnsrun/HEAD/README.md -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gch1p/voidnsrun/HEAD/config.h -------------------------------------------------------------------------------- /macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gch1p/voidnsrun/HEAD/macros.h -------------------------------------------------------------------------------- /test/testclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gch1p/voidnsrun/HEAD/test/testclient.c -------------------------------------------------------------------------------- /test/testserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gch1p/voidnsrun/HEAD/test/testserver.c -------------------------------------------------------------------------------- /utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gch1p/voidnsrun/HEAD/utils.c -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gch1p/voidnsrun/HEAD/utils.h -------------------------------------------------------------------------------- /voidnsrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gch1p/voidnsrun/HEAD/voidnsrun.c -------------------------------------------------------------------------------- /voidnsundo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gch1p/voidnsrun/HEAD/voidnsundo.c --------------------------------------------------------------------------------