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