diff options
author | guido <guido@FreeBSD.org> | 2000-01-14 19:48:42 +0000 |
---|---|---|
committer | guido <guido@FreeBSD.org> | 2000-01-14 19:48:42 +0000 |
commit | e66131d4143150abdb0da6af95ad75b6618a9ade (patch) | |
tree | d288afa73c4f1c7d1d982d99d0f783367df8a19a /sys/contrib | |
parent | 7c59c0cbac062da521ad657dfb8d3458fcfceaca (diff) | |
download | FreeBSD-src-e66131d4143150abdb0da6af95ad75b6618a9ade.zip FreeBSD-src-e66131d4143150abdb0da6af95ad75b6618a9ade.tar.gz |
Apply patches in rev 1.2 and 1.9 that I forgot
Pointe out by: bde
Diffstat (limited to 'sys/contrib')
-rw-r--r-- | sys/contrib/ipfilter/netinet/ip_fil.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/contrib/ipfilter/netinet/ip_fil.h b/sys/contrib/ipfilter/netinet/ip_fil.h index 789dd3d..3458922 100644 --- a/sys/contrib/ipfilter/netinet/ip_fil.h +++ b/sys/contrib/ipfilter/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 *)); |