Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /* 
0003  * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
0004  */
0005 
0006 #ifndef __UM_TUNTAP_H
0007 #define __UM_TUNTAP_H
0008 
0009 #include <net_user.h>
0010 
0011 struct tuntap_data {
0012     char *dev_name;
0013     int fixed_config;
0014     char *gate_addr;
0015     int fd;
0016     void *dev;
0017 };
0018 
0019 extern const struct net_user_info tuntap_user_info;
0020 
0021 #endif