52 m_local_cbr[1] = m_local_cbr[0];
53 m_local_cbr[0] = local;
55 CbrAggregatorUnit one_hop;
56 CbrAggregatorUnit two_hop;
58 LocationTable::entry_visitor entry_visitor =
61 if (loctex && loctex->local_update >= lifetime) {
62 one_hop += loctex->dcc_mco.local_cbr();
63 two_hop += loctex->dcc_mco.neighbour_cbr();
66 lt.visit(entry_visitor);
68 m_one_hop_cbr = one_hop(target);
69 m_two_hop_cbr = two_hop(target);
70 m_global_cbr = std::max({ m_local_cbr[1], m_one_hop_cbr, m_two_hop_cbr});