pcap_user.h 364 B

12345678910111213141516171819202122
  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 const struct net_user_info pcap_user_info;
  16. extern int pcap_user_read(int fd, void *buf, int len, struct pcap_data *pri);