2005-04-17 00:20:36 +02:00
|
|
|
/*
|
2007-10-16 10:27:29 +02:00
|
|
|
* Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
2005-04-17 00:20:36 +02:00
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
2007-10-16 10:27:29 +02:00
|
|
|
#ifndef __DRIVERS_ETAP_H
|
|
|
|
#define __DRIVERS_ETAP_H
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#include "net_user.h"
|
|
|
|
|
|
|
|
struct ethertap_data {
|
|
|
|
char *dev_name;
|
|
|
|
char *gate_addr;
|
|
|
|
int data_fd;
|
|
|
|
int control_fd;
|
|
|
|
void *dev;
|
|
|
|
};
|
|
|
|
|
2006-09-27 10:50:33 +02:00
|
|
|
extern const struct net_user_info ethertap_user_info;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-10-16 10:27:29 +02:00
|
|
|
#endif
|