CVSROOT: /cvs Module name: src Changes by: m...@cvs.openbsd.org 2016/10/03 06:33:21
Modified files: sys/netinet6 : in6.c in6.h ip6_forward.c ip6_id.c ip6_mroute.c nd6.c nd6_rtr.c Log message: Convert some of the remaining usages of time_second to time_uptime. time_second is unix time so it can be affected by clock changes. time_uptime is monotonic so it isnt affected by clock changes. that in turn means route expiries wont jump with clock changes if set against time_uptime. the expiry is translated into unix time for export to userland though. Should fix mismatch between route timers that were already converted and ND default routers that were still using time_second. Tested by matthieu@ and sthen@ ok sthen@, dlg@