2005-04-16 18:20:36 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2001 Jeff Dike (jdike@karaya.com)
|
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "net_user.h"
|
|
|
|
|
|
|
|
struct ethertap_data {
|
|
|
|
char *dev_name;
|
|
|
|
char *gate_addr;
|
|
|
|
int data_fd;
|
|
|
|
int control_fd;
|
|
|
|
void *dev;
|
|
|
|
};
|
|
|
|
|
2006-09-27 04:50:33 -04:00
|
|
|
extern const struct net_user_info ethertap_user_info;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Overrides for Emacs so that we follow Linus's tabbing style.
|
|
|
|
* Emacs will notice this stuff at the end of the file and automatically
|
|
|
|
* adjust the settings for this buffer only. This must remain at the end
|
|
|
|
* of the file.
|
|
|
|
* ---------------------------------------------------------------------------
|
|
|
|
* Local variables:
|
|
|
|
* c-file-style: "linux"
|
|
|
|
* End:
|
|
|
|
*/
|