h. */ extern fib_node_index_t ip6_ll_table_lookup_exact_match (const ip6_ll_prefix_t * prefix); /** * @brief * Update an entry in the table. The falgs determine if the entry is * LOCAL, in which case it's a receive, or not, in which case the entry * will link to an adjacency. * * @param prefix * The prefix for the entry to add * * @return * the index of the fib_entry_t that is created (or existed already). */ extern fib_node_index_t ip6_ll_table_entry_update (const ip6_ll_prefix_t * prefix, fib_route_path_flags_t flags); /** * @brief * Delete a IP6 link-local entry. * * @param prefix * The prefix for the entry to remove */ extern void ip6_ll_table_entry_delete (const ip6_ll_prefix_t * prefix); /** * @brief For use in the data plane. Get the underlying ip6 FIB */ extern u32 ip6_ll_fib_get (u32 sw_if_index); /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */ #endif