summaryrefslogtreecommitdiffstats
path: root/sys/netinet6/in6_gif.c
diff options
context:
space:
mode:
authorume <ume@FreeBSD.org>2003-10-08 18:26:08 +0000
committerume <ume@FreeBSD.org>2003-10-08 18:26:08 +0000
commitcb2c1545ab3b25d366aeb88623dd50ed9349e174 (patch)
tree0e57d38335c69eed019dcea1730b3cd22ff6025e /sys/netinet6/in6_gif.c
parent8f2de8390a373f0018eb9a8bb4cab9e630163357 (diff)
downloadFreeBSD-src-cb2c1545ab3b25d366aeb88623dd50ed9349e174.zip
FreeBSD-src-cb2c1545ab3b25d366aeb88623dd50ed9349e174.tar.gz
- fix typo in comments.
- style. - NULL is not 0. - some variables were renamed. - nuke unused logic. (there is no functional change.) Obtained from: KAME
Diffstat (limited to 'sys/netinet6/in6_gif.c')
-rw-r--r--sys/netinet6/in6_gif.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/netinet6/in6_gif.c b/sys/netinet6/in6_gif.c
index 1531891..748838b 100644
--- a/sys/netinet6/in6_gif.c
+++ b/sys/netinet6/in6_gif.c
@@ -75,7 +75,7 @@ static int gif_validate6(const struct ip6_hdr *, struct gif_softc *,
extern struct domain inet6domain;
struct ip6protosw in6_gif_protosw =
-{ SOCK_RAW, &inet6domain, 0/*IPPROTO_IPV[46]*/, PR_ATOMIC|PR_ADDR,
+{ SOCK_RAW, &inet6domain, 0/* IPPROTO_IPV[46] */, PR_ATOMIC|PR_ADDR,
in6_gif_input, rip6_output, 0, rip6_ctloutput,
0,
0, 0, 0, 0,
@@ -143,7 +143,7 @@ in6_gif_output(ifp, family, m)
m_freem(m);
return EAFNOSUPPORT;
}
-
+
/* prepend new IP header */
M_PREPEND(m, sizeof(struct ip6_hdr), M_DONTWAIT);
if (m && m->m_len < sizeof(struct ip6_hdr))
@@ -208,7 +208,7 @@ in6_gif_output(ifp, family, m)
- sizeof(struct ip6_hdr);
#endif
}
-
+
#ifdef IPV6_MINMTU
/*
* force fragmentation to minimum MTU, to avoid path MTU discovery.
@@ -221,7 +221,8 @@ in6_gif_output(ifp, family, m)
#endif
}
-int in6_gif_input(mp, offp, proto)
+int
+in6_gif_input(mp, offp, proto)
struct mbuf **mp;
int *offp, proto;
{
@@ -288,7 +289,7 @@ int in6_gif_input(mp, offp, proto)
m_freem(m);
return IPPROTO_DONE;
}
-
+
gif_input(m, af, gifp);
return IPPROTO_DONE;
}
OpenPOWER on IntegriCloud