pcap_user.h 724 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
  3. * Licensed under the GPL
  4. */
  5. #include "net_user.h"
  6. struct pcap_data {
  7. char *host_if;
  8. int promisc;
  9. int optimize;
  10. char *filter;
  11. void *compiled;
  12. void *pcap;
  13. void *dev;
  14. };
  15. extern struct net_user_info pcap_user_info;
  16. extern int pcap_user_read(int fd, void *buf, int len, struct pcap_data *pri);
  17. /*
  18. * Overrides for Emacs so that we follow Linus's tabbing style.
  19. * Emacs will notice this stuff at the end of the file and automatically
  20. * adjust the settings for this buffer only. This must remain at the end
  21. * of the file.
  22. * ---------------------------------------------------------------------------
  23. * Local variables:
  24. * c-file-style: "linux"
  25. * End:
  26. */