aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido van Rooij <guido@FreeBSD.org>2000-01-14 19:48:42 +0000
committerGuido van Rooij <guido@FreeBSD.org>2000-01-14 19:48:42 +0000
commitb33271069ed83c1de37b141817a6f7da091ec930 (patch)
tree751db0df7ace555e0f355f36ca463b62c41ceda6
parentd3efeb2865011b996e7a00720f34f360e0f3b67c (diff)
downloadsrc-b33271069ed83c1de37b141817a6f7da091ec930.tar.gz
src-b33271069ed83c1de37b141817a6f7da091ec930.zip
Apply patches in rev 1.2 and 1.9 that I forgot
Pointe out by: bde
Notes
Notes: svn path=/head/; revision=55990
-rw-r--r--sys/netinet/ip_fil.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/ip_fil.h b/sys/netinet/ip_fil.h
index 789dd3dad044..345892293c78 100644
--- a/sys/netinet/ip_fil.h
+++ b/sys/netinet/ip_fil.h
@@ -83,8 +83,8 @@
#define SIOCINSFR SIOCINAFR
typedef struct fr_ip {
- u_char fi_v:4; /* IP version */
- u_char fi_fl:4; /* packet flags */
+ u_int fi_v:4; /* IP version */
+ u_int fi_fl:4; /* packet flags */
u_char fi_tos; /* IP packet TOS */
u_char fi_ttl; /* IP packet TTL */
u_char fi_p; /* IP packet protocol */
@@ -427,6 +427,7 @@ typedef struct ipflog {
#ifndef _KERNEL
+struct ifnet;
extern int fr_check __P((ip_t *, int, void *, int, mb_t **));
extern int (*fr_checkp) __P((ip_t *, int, void *, int, mb_t **));
extern int send_reset __P((ip_t *, struct ifnet *));