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 __DRIVERS_ETAP_H
0007 #define __DRIVERS_ETAP_H
0008 
0009 #include <net_user.h>
0010 
0011 struct ethertap_data {
0012     char *dev_name;
0013     char *gate_addr;
0014     int data_fd;
0015     int control_fd;
0016     void *dev;
0017 };
0018 
0019 extern const struct net_user_info ethertap_user_info;
0020 
0021 #endif