]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/netinet/ip_encap.c
xnu-4570.1.46.tar.gz
[apple/xnu.git] / bsd / netinet / ip_encap.c
index 6c4d33072b487d1204faf025ace058bab8282ec1..5276504a9b4ce8dcf78f585bbedaad658b0a864c 100644 (file)
@@ -1,8 +1,8 @@
 /*
- * Copyright (c) 2000-2012 Apple Inc. All rights reserved.
+ * Copyright (c) 2000-2016 Apple Inc. All rights reserved.
  *
  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
- * 
+ *
  * This file contains Original Code and/or Modifications of Original Code
  * as defined in and that are subject to the Apple Public Source License
  * Version 2.0 (the 'License'). You may not use this file except in
  * unlawful or unlicensed copies of an Apple operating system, or to
  * circumvent, violate, or enable the circumvention or violation of, any
  * terms of an Apple operating system software license agreement.
- * 
+ *
  * Please obtain a copy of the License at
  * http://www.opensource.apple.com/apsl/ and read it before using this file.
- * 
+ *
  * The Original Code and all software distributed under the License are
  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
@@ -22,7 +22,7 @@
  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
  * Please see the License for the specific language governing rights and
  * limitations under the License.
- * 
+ *
  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
  */
 /*     $FreeBSD: src/sys/netinet/ip_encap.c,v 1.1.2.2 2001/07/03 11:01:46 ume Exp $    */
@@ -169,9 +169,7 @@ encap6_init(struct ip6protosw *pp, struct domain *dp)
 
 #if INET
 void
-encap4_input(m, off)
-       struct mbuf *m;
-       int off;
+encap4_input(struct mbuf *m, int off)
 {
        int proto;
        struct ip *ip;
@@ -333,10 +331,8 @@ encap6_input(struct mbuf **mp, int *offp, int proto)
 #endif
 
 static void
-encap_add(ep)
-       struct encaptab *ep;
+encap_add(struct encaptab *ep)
 {
-
        LIST_INSERT_HEAD(&encaptab, ep, chain);
 }
 
@@ -346,13 +342,9 @@ encap_add(ep)
  * Return value will be necessary as input (cookie) for encap_detach().
  */
 const struct encaptab *
-encap_attach(af, proto, sp, sm, dp, dm, psw, arg)
-       int af;
-       int proto;
-       const struct sockaddr *sp, *sm;
-       const struct sockaddr *dp, *dm;
-       const struct protosw *psw;
-       void *arg;
+encap_attach(int af, int proto, const struct sockaddr *sp,
+       const struct sockaddr *sm, const struct sockaddr *dp,
+       const struct sockaddr *dm, const struct protosw *psw, void *arg)
 {
        struct encaptab *ep;
        int error;
@@ -415,12 +407,9 @@ fail:
 }
 
 const struct encaptab *
-encap_attach_func(af, proto, func, psw, arg)
-       int af;
-       int proto;
-       int (*func)(const struct mbuf *, int, int, void *);
-       const struct protosw *psw;
-       void *arg;
+encap_attach_func( int af, int proto,
+       int (*func)(const struct mbuf *, int, int, void *),
+       const struct protosw *psw, void *arg)
 {
        struct encaptab *ep;
        int error;
@@ -453,8 +442,7 @@ fail:
 }
 
 int
-encap_detach(cookie)
-       const struct encaptab *cookie;
+encap_detach(const struct encaptab *cookie)
 {
        const struct encaptab *ep = cookie;
        struct encaptab *p;
@@ -471,10 +459,8 @@ encap_detach(cookie)
 }
 
 static int
-mask_match(ep, sp, dp)
-       const struct encaptab *ep;
-       const struct sockaddr *sp;
-       const struct sockaddr *dp;
+mask_match(const struct encaptab *ep, const struct sockaddr *sp,
+       const struct sockaddr *dp)
 {
        struct sockaddr_storage s;
        struct sockaddr_storage d;
@@ -546,8 +532,7 @@ encap_fillarg(
 }
 
 void *
-encap_getarg(m)
-       struct mbuf *m;
+encap_getarg(struct mbuf *m)
 {
        struct m_tag    *tag;
        struct encaptabtag *et;