/arch/um/drivers/pcap_user.h

http://github.com/mirrors/linux · C Header · 21 lines · 12 code · 5 blank · 4 comment · 0 complexity · a05de8fc40a3a674457ccbcd18cc04ae MD5 · raw file

  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
  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);