etap.h 349 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
  3. * Licensed under the GPL
  4. */
  5. #ifndef __DRIVERS_ETAP_H
  6. #define __DRIVERS_ETAP_H
  7. #include <net_user.h>
  8. struct ethertap_data {
  9. char *dev_name;
  10. char *gate_addr;
  11. int data_fd;
  12. int control_fd;
  13. void *dev;
  14. };
  15. extern const struct net_user_info ethertap_user_info;
  16. #endif