diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-03-03 21:07:23 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-03-03 21:07:23 +0000 |
commit | 4f317e580dfce2348ec5cfc05dfde20ed8440910 (patch) | |
tree | eb3b13b1292e732a4b08fa5272c6479c351c7f42 /sys/net/if.h | |
parent | a3761d430c4e4adef30c75ff09632e3f410acd58 (diff) |
From NetBSD: 960217 merge
Diffstat (limited to 'sys/net/if.h')
-rw-r--r-- | sys/net/if.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/net/if.h b/sys/net/if.h index dada588d55b..abe87a38015 100644 --- a/sys/net/if.h +++ b/sys/net/if.h @@ -1,4 +1,5 @@ -/* $NetBSD: if.h,v 1.19 1995/06/19 21:57:28 cgd Exp $ */ +/* $OpenBSD: if.h,v 1.2 1996/03/03 21:07:06 niklas Exp $ */ +/* $NetBSD: if.h,v 1.20 1996/02/13 22:00:12 christos Exp $ */ /* * Copyright (c) 1982, 1986, 1989, 1993 @@ -226,7 +227,8 @@ struct ifaddr { struct sockaddr *ifa_netmask; /* used to determine subnet */ struct ifnet *ifa_ifp; /* back-pointer to interface */ TAILQ_ENTRY(ifaddr) ifa_list; /* list of addresses for interface */ - void (*ifa_rtrequest)(); /* check or clean routes (+ or -)'d */ + void (*ifa_rtrequest) /* check or clean routes (+ or -)'d */ + __P((int, struct rtentry *, struct sockaddr *)); u_short ifa_flags; /* mostly rt_flags for cloning */ short ifa_refcnt; /* count of references */ int ifa_metric; /* cost of going out this interface */ |