X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/blobdiff_plain/f2de91c15599c67b5d943867805b3464ea58a197..158abb01b4d99207a276117949c1d7178bbe8045:/sys/net/faith/if_faith.c diff --git a/sys/net/faith/if_faith.c b/sys/net/faith/if_faith.c index 7eeb010a53..10f0c8e996 100644 --- a/sys/net/faith/if_faith.c +++ b/sys/net/faith/if_faith.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. * * $FreeBSD: src/sys/net/if_faith.c,v 1.3.2.6 2002/04/28 05:40:25 suz Exp $ - * $DragonFly: src/sys/net/faith/if_faith.c,v 1.3 2003/08/07 21:17:24 dillon Exp $ + * $DragonFly: src/sys/net/faith/if_faith.c,v 1.4 2003/08/26 20:49:47 rob Exp $ */ /* * derived from @@ -97,20 +97,20 @@ struct faith_softc { LIST_ENTRY(faith_softc) sc_list; }; -static int faithioctl __P((struct ifnet *, u_long, caddr_t)); -int faithoutput __P((struct ifnet *, struct mbuf *, struct sockaddr *, - struct rtentry *)); -static void faithrtrequest __P((int, struct rtentry *, struct rt_addrinfo *)); -static int faithprefix __P((struct in6_addr *)); +static int faithioctl (struct ifnet *, u_long, caddr_t); +int faithoutput (struct ifnet *, struct mbuf *, struct sockaddr *, + struct rtentry *); +static void faithrtrequest (int, struct rtentry *, struct rt_addrinfo *); +static int faithprefix (struct in6_addr *); -static int faithmodevent __P((module_t, int, void *)); +static int faithmodevent (module_t, int, void *); static MALLOC_DEFINE(M_FAITH, FAITHNAME, "Firewall Assisted Tunnel Interface"); static struct rman faithunits[1]; LIST_HEAD(, faith_softc) faith_softc_list; -int faith_clone_create __P((struct if_clone *, int *)); -void faith_clone_destroy __P((struct ifnet *)); +int faith_clone_create (struct if_clone *, int *); +void faith_clone_destroy (struct ifnet *); struct if_clone faith_cloner = IF_CLONE_INITIALIZER(FAITHNAME, faith_clone_create, faith_clone_destroy);