diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-04-17 17:46:33 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-04-17 17:46:33 +0000 |
commit | 0ce12e1362d853420da3d1778cd033c53982ca49 (patch) | |
tree | e0bbee2648f9382c796a243b8ba00a6c87ab3f6c /sys/net/if.h | |
parent | 7bd2e9dcad78057dab150575417eade09d8de704 (diff) |
split SIOCSIFLLADDR code out into an ifnewlladr() function
ok stsp
Diffstat (limited to 'sys/net/if.h')
-rw-r--r-- | sys/net/if.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/if.h b/sys/net/if.h index d467bbaa20e..4f8d0ad24a0 100644 --- a/sys/net/if.h +++ b/sys/net/if.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if.h,v 1.114 2010/04/06 14:12:10 stsp Exp $ */ +/* $OpenBSD: if.h,v 1.115 2010/04/17 17:46:32 deraadt Exp $ */ /* $NetBSD: if.h,v 1.23 1996/05/07 02:40:27 thorpej Exp $ */ /* @@ -810,6 +810,7 @@ int if_delgroup(struct ifnet *, const char *); void if_group_routechange(struct sockaddr *, struct sockaddr *); struct ifnet *ifunit(const char *); void if_start(struct ifnet *); +void ifnewlladdr(struct ifnet *); struct ifaddr *ifa_ifwithaddr(struct sockaddr *, u_int); struct ifaddr *ifa_ifwithaf(int, u_int); |