diff options
Diffstat (limited to 'sys/netinet6/vinet6.h')
-rw-r--r-- | sys/netinet6/vinet6.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/netinet6/vinet6.h b/sys/netinet6/vinet6.h index a84be4f..d509977 100644 --- a/sys/netinet6/vinet6.h +++ b/sys/netinet6/vinet6.h @@ -89,7 +89,7 @@ struct vnet_inet6 { int _dad_init; int _icmp6errpps_count; - int _icmp6errppslim_last; + struct timeval _icmp6errppslim_last; int _ip6_forwarding; int _ip6_sendredirects; @@ -156,6 +156,12 @@ struct vnet_inet6 { struct ip6_pktopts _ip6_opts; }; +#ifndef VIMAGE +#ifndef VIMAGE_GLOBALS +extern struct vnet_inet6 vnet_inet6_0; +#endif +#endif + #define INIT_VNET_INET6(vnet) \ INIT_FROM_VNET(vnet, VNET_MOD_INET6, struct vnet_inet6, vnet_inet6) |