created | 2022-05-04T06:49:27Z |
---|---|
begin | 2022-04-28T16:56:39Z |
end | 2022-04-28T17:27:14Z |
path | src/sys |
commits | 1 |
date | 2022-04-28T17:27:14Z | |||
---|---|---|---|---|
author | claudio | |||
files | src/sys/netinet/ip_input.c | log | diff | annotate |
src/sys/netinet/ip_mroute.c | log | diff | annotate | |
src/sys/netinet/ip_mroute.h | log | diff | annotate | |
src/sys/netinet6/ip6_input.c | log | diff | annotate | |
src/sys/netinet6/ip6_mroute.c | log | diff | annotate | |
src/sys/netinet6/ip6_mroute.h | log | diff | annotate | |
message |
In the multicast router code don't allocate a rt timer queue for each rdomain. The rttimer API is rtable/rdomain aware and so there is no need to have so many queues. Also init the two queues (one for IPv4 and one for IPv6) early on. This will allow the rttable code to become simpler. OK bluhm@ |