CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2016/06/02 20:56:59
Modified files:
sys/net : route.c route.h rtsock.c
sys/netinet : if_ether.c
Log message:
set rt_expire times against time_uptime, not time_second.
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.
ok mpi@