diff options
| author | Brooks Davis <brooks@FreeBSD.org> | 2001-09-25 18:40:52 +0000 |
|---|---|---|
| committer | Brooks Davis <brooks@FreeBSD.org> | 2001-09-25 18:40:52 +0000 |
| commit | 9494d5968ff60672ca84b345e32dde28113cbf36 (patch) | |
| tree | 047925a0cd0ed3cd9eac86164bb29b8242a91c33 /sys/netinet/ip_output.c | |
| parent | 0ec8be8404d4307f84f035fca10cb45cbea0e83d (diff) | |
Notes
Diffstat (limited to 'sys/netinet/ip_output.c')
| -rw-r--r-- | sys/netinet/ip_output.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c index 86b321e2f1c8..bd09521b1846 100644 --- a/sys/netinet/ip_output.c +++ b/sys/netinet/ip_output.c @@ -63,8 +63,6 @@ #include <netinet/in_var.h> #include <netinet/ip_var.h> -#include "faith.h" - #include <machine/in_cksum.h> static MALLOC_DEFINE(M_IPMOPTS, "ip_moptions", "internet multicast options"); @@ -1166,9 +1164,7 @@ ip_ctloutput(so, sopt) case IP_RECVRETOPTS: case IP_RECVDSTADDR: case IP_RECVIF: -#if defined(NFAITH) && NFAITH > 0 case IP_FAITH: -#endif error = sooptcopyin(sopt, &optval, sizeof optval, sizeof optval); if (error) @@ -1204,11 +1200,9 @@ ip_ctloutput(so, sopt) OPTSET(INP_RECVIF); break; -#if defined(NFAITH) && NFAITH > 0 case IP_FAITH: OPTSET(INP_FAITH); break; -#endif } break; #undef OPTSET @@ -1300,9 +1294,7 @@ ip_ctloutput(so, sopt) case IP_RECVDSTADDR: case IP_RECVIF: case IP_PORTRANGE: -#if defined(NFAITH) && NFAITH > 0 case IP_FAITH: -#endif switch (sopt->sopt_name) { case IP_TOS: @@ -1340,11 +1332,9 @@ ip_ctloutput(so, sopt) optval = 0; break; -#if defined(NFAITH) && NFAITH > 0 case IP_FAITH: optval = OPTBIT(INP_FAITH); break; -#endif } error = sooptcopyout(sopt, &optval, sizeof optval); break; |
