#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <linux/if_tun.h>
#include <net/if.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/wait.h>
#include <sys/uio.h>
#include <kern_util.h>
#include <os.h>
#include "tuntap.h"
Go to the source code of this file.
Initial value:= {
.init = tuntap_user_init,
.open = tuntap_open,
.close = tuntap_close,
.add_address = tuntap_add_addr,
.delete_address = tuntap_del_addr,
}
Definition at line 206 of file tuntap_user.c.