aboutsummaryrefslogtreecommitdiff
path: root/sys/netipsec
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2009-01-05 20:29:01 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2009-01-05 20:29:01 +0000
commit4b5c098fdf98bd15aeba2eec8e0f45340ac1dc7c (patch)
treec8cf8c207fc8f3d5554bda654200fb06dea2b084 /sys/netipsec
parent065188a6300fb53e66c2f09af2d3974ef4067d77 (diff)
downloadsrc-4b5c098fdf98bd15aeba2eec8e0f45340ac1dc7c.tar.gz
src-4b5c098fdf98bd15aeba2eec8e0f45340ac1dc7c.zip
Switch the last protosw* structs to C99 initializers.
Reviewed by: ed, julian, Christoph Mallon <christoph.mallon@gmx.de> MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=186791
Diffstat (limited to 'sys/netipsec')
-rw-r--r--sys/netipsec/xform_ipip.c28
1 files changed, 16 insertions, 12 deletions
diff --git a/sys/netipsec/xform_ipip.c b/sys/netipsec/xform_ipip.c
index e7940e4d6c5c..7b8b92bb7340 100644
--- a/sys/netipsec/xform_ipip.c
+++ b/sys/netipsec/xform_ipip.c
@@ -660,20 +660,24 @@ static struct xformsw ipe4_xformsw = {
};
extern struct domain inetdomain;
-static struct protosw ipe4_protosw =
-{ SOCK_RAW, &inetdomain, IPPROTO_IPV4, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
- ip4_input,
- 0, 0, rip_ctloutput,
- 0, 0, 0, 0,
- &rip_usrreqs
+static struct protosw ipe4_protosw = {
+ .pr_type = SOCK_RAW,
+ .pr_domain = &inetdomain,
+ .pr_protocol = IPPROTO_IPV4,
+ .pr_flags = PR_ATOMIC|PR_ADDR|PR_LASTHDR,
+ .pr_input = ip4_input,
+ .pr_ctloutput = rip_ctloutput,
+ .pr_usrreqs = &rip_usrreqs
};
#ifdef INET6
-static struct ip6protosw ipe6_protosw =
-{ SOCK_RAW, &inetdomain, IPPROTO_IPV6, PR_ATOMIC|PR_ADDR|PR_LASTHDR,
- ip4_input6,
- 0, 0, rip_ctloutput,
- 0, 0, 0, 0,
- &rip_usrreqs
+static struct ip6protosw ipe6_protosw = {
+ .pr_type = SOCK_RAW,
+ .pr_domain = &inetdomain,
+ .pr_protocol = IPPROTO_IPV6,
+ .pr_flags = PR_ATOMIC|PR_ADDR|PR_LASTHDR,
+ .pr_input = ip4_input6,
+ .pr_ctloutput = rip_ctloutput,
+ .pr_usrreqs = &rip_usrreqs
};
#endif