You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/vendor/libtuntap-master/regress/test18.c

33 lines
466 B
C

/* Public domain - Tristan Le Guern <tleguern@bouledef.eu> */
#include <sys/types.h>
#include <stdio.h>
#if defined Windows
# include <windows.h>
#endif
#include "tuntap.h"
int
main(void) {
struct device *dev;
dev = tuntap_init();
if (tuntap_start(dev, TUNTAP_MODE_TUNNEL, TUNTAP_ID_ANY) == -1) {
return 1;
}
if (tuntap_set_ip(dev, "1.2.3.4", 24) == -1) {
return 1;
}
if (tuntap_up(dev) == -1) {
return 1;
}
tuntap_destroy(dev);
return 0;
}