diff options
author | 2001-02-08 14:51:21 +0000 | |
---|---|---|
committer | 2001-02-08 14:51:21 +0000 | |
commit | b3c1e4c13f006f698bc26c658ec7ad1f514852dd (patch) | |
tree | 57087e7d2d4d8e8ed4598957bd232b7548b1ef1b /sys/netinet6/nd6.h | |
parent | snprintf (diff) | |
download | wireguard-openbsd-b3c1e4c13f006f698bc26c658ec7ad1f514852dd.tar.xz wireguard-openbsd-b3c1e4c13f006f698bc26c658ec7ad1f514852dd.zip |
use timeout_xx() throughout sys/netinet6. sync with kame.
Diffstat (limited to 'sys/netinet6/nd6.h')
-rw-r--r-- | sys/netinet6/nd6.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/netinet6/nd6.h b/sys/netinet6/nd6.h index 62851f3ac48..f22b6bbd787 100644 --- a/sys/netinet6/nd6.h +++ b/sys/netinet6/nd6.h @@ -1,5 +1,5 @@ -/* $OpenBSD: nd6.h,v 1.10 2001/02/07 11:43:54 itojun Exp $ */ -/* $KAME: nd6.h,v 1.42 2001/02/06 09:14:39 jinmei Exp $ */ +/* $OpenBSD: nd6.h,v 1.11 2001/02/08 14:51:22 itojun Exp $ */ +/* $KAME: nd6.h,v 1.46 2001/02/08 10:57:00 itojun Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -39,6 +39,7 @@ #endif #include <sys/queue.h> +#include <sys/timeout.h> struct llinfo_nd6 { struct llinfo_nd6 *ln_next; @@ -240,6 +241,8 @@ extern int nd6_debug; #define nd6log(x) do { if (nd6_debug) log x; } while (0) +extern struct timeout nd6_timer_ch; + /* nd6_rtr.c */ extern struct ifnet *nd6_defifp; /* XXXYYY */ extern int nd6_defifindex; |