repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
22 lines
377 B
C
22 lines
377 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
|
|
*/
|
|
|
|
#include <net_user.h>
|
|
|
|
struct pcap_data {
|
|
char *host_if;
|
|
int promisc;
|
|
int optimize;
|
|
char *filter;
|
|
void *compiled;
|
|
void *pcap;
|
|
void *dev;
|
|
};
|
|
|
|
extern const struct net_user_info pcap_user_info;
|
|
|
|
extern int pcap_user_read(int fd, void *buf, int len, struct pcap_data *pri);
|
|
|