mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
31 lines
496 B
C
31 lines
496 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) {
|
|
int ret;
|
|
struct device *dev;
|
|
const char *s = "This tap interface is here for testing purpose";
|
|
|
|
ret = 0;
|
|
dev = tuntap_init();
|
|
if (tuntap_start(dev, TUNTAP_MODE_ETHERNET, TUNTAP_ID_ANY) == -1)
|
|
ret = 1;
|
|
|
|
if (tuntap_set_descr(dev, s) == -1) {
|
|
ret = 1;
|
|
}
|
|
|
|
tuntap_destroy(dev);
|
|
return ret;
|
|
}
|
|
|