diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-05-27 13:42:17 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-05-27 13:42:17 +0000 |
commit | dd02339b806a5c6f23ab54bb5815e81b249133f8 (patch) | |
tree | a4e0d98545a7ec34db68746c168991b043e1892c /sys/net/if.h | |
parent | 5ed7881d0cbf3bce3801829be9809f399c82b93a (diff) |
if_attach() gets called before domaininit(). scan all interfaces for if_afdata
initialization after domaininit().
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 cbfd14b2bab..fec6c7f53db 100644 --- a/sys/net/if.h +++ b/sys/net/if.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if.h,v 1.36 2002/05/27 02:59:40 itojun Exp $ */ +/* $OpenBSD: if.h,v 1.37 2002/05/27 13:42:16 itojun Exp $ */ /* $NetBSD: if.h,v 1.23 1996/05/07 02:40:27 thorpej Exp $ */ /* @@ -557,6 +557,7 @@ int ether_output(struct ifnet *, char *ether_sprintf(u_char *); void if_attach(struct ifnet *); +void if_attachdomain(void); void if_attachtail(struct ifnet *); void if_attachhead(struct ifnet *); void if_detach(struct ifnet *); |