diff options
author | Oliver Lehmann <oliver@FreeBSD.org> | 2005-07-31 09:21:44 +0800 |
---|---|---|
committer | Oliver Lehmann <oliver@FreeBSD.org> | 2005-07-31 09:21:44 +0800 |
commit | 4ae1da5b8f24c37faddc1aec10fb7e3a065455a4 (patch) | |
tree | a08ae1f871748456cf438b13e2bef84d322aedae /net | |
parent | 5c2769e40e5c6848c18b65069c2407d5fd2a1363 (diff) | |
download | freebsd-ports-gnome-4ae1da5b8f24c37faddc1aec10fb7e3a065455a4.tar.gz freebsd-ports-gnome-4ae1da5b8f24c37faddc1aec10fb7e3a065455a4.tar.zst freebsd-ports-gnome-4ae1da5b8f24c37faddc1aec10fb7e3a065455a4.zip |
that file got comitted by error and wasn't meant to get committed... so remove it
Diffstat (limited to 'net')
-rw-r--r-- | net/bpfstat/lala | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/net/bpfstat/lala b/net/bpfstat/lala deleted file mode 100644 index 24224838ae13..000000000000 --- a/net/bpfstat/lala +++ /dev/null @@ -1,57 +0,0 @@ -@@ -33,7 +33,7 @@ - * - * @(#)bpfdesc.h 8.1 (Berkeley) 6/10/93 - * -- * $FreeBSD: /tmp/pcvs/ports/net/bpfstat/Attic/lala,v 1.1 2005-07-31 01:16:03 oliver Exp $ -+ * $FreeBSD: /tmp/pcvs/ports/net/bpfstat/Attic/lala,v 1.1 2005-07-31 01:16:03 oliver Exp $ - */ - - #ifndef _NET_BPFDESC_H_ -@@ -42,6 +42,8 @@ - #include <sys/callout.h> - #include <sys/selinfo.h> - #include <sys/queue.h> -+#include <sys/conf.h> -+#include <net/if.h> - - /* - * Descriptor associated with each open bpf file. -@@ -90,6 +92,9 @@ struct bpf_d { - struct mtx bd_mtx; /* mutex for this descriptor */ - struct callout bd_callout; /* for BPF timeouts with select */ - struct label *bd_label; /* MAC label for descriptor */ -+ u_long bd_fcount; /* number of packets which matched filter */ -+ pid_t bd_pid; /* PID which created descriptor */ -+ char bd_pcomm[MAXCOMLEN + 1]; - }; - - /* Values for bd_state */ -@@ -121,6 +126,27 @@ struct bpf_if { - u_int bif_hdrlen; /* length of header (with padding) */ - struct ifnet *bif_ifp; /* corresponding interface */ - struct mtx bif_mtx; /* mutex for interface */ -+}; -+ -+/* -+ * External representation of the bpf descriptor -+ */ -+struct xbpf_d { -+ u_char bd_promisc; -+ u_char bd_immediate; -+ int bd_hdrcmplt; -+ int bd_seesent; -+ int bd_async; -+ u_long bd_rcount; -+ u_long bd_dcount; -+ u_long bd_fcount; -+ int bd_sig; -+ int bd_slen; -+ int bd_hlen; -+ int bd_bufsize; -+ pid_t bd_pid; -+ char bd_ifname[IFNAMSIZ]; -+ char bd_pcomm[MAXCOMLEN + 1]; - }; - - #define BPFIF_LOCK(bif) mtx_lock(&(bif)->bif_mtx) - |