CVSROOT: /cvs Module name: src Changes by: [email protected] 2023/11/10 13:05:23
Modified files:
sys/net : art.c art.h route.c route.h rtable.c rtable.h
sys/netinet : in.h
sys/netinet6 : in6.h
Log message:
rtable_match() takes constant destination.
For implementing MP safe route lookup, it helps to know which
function parameters are constant. Add some const declarations, so
that the compiler guarantees that sockaddr dst parameter of
rtable_match() does not change.
OK dlg@
