/* Public domain - Tristan Le Guern */ #include #include #if defined Windows # include #endif #include "tuntap.h" int main(void) { int ret; struct device *dev; ret = 0; dev = tuntap_init(); if (tuntap_start(dev, TUNTAP_MODE_ETHERNET|TUNTAP_MODE_PERSIST , 0) == -1) ret = 1; tuntap_destroy(dev); return ret; }