MCPcopy Create free account
hub / github.com/F-Stack/f-stack / find_route6_entry

Function find_route6_entry

dpdk/app/graph/ip6_route.c:34–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32}
33
34static struct route_ipv6_config *
35find_route6_entry(struct route_ipv6_config *route)
36{
37 struct route_ipv6_config *ipv6route;
38
39 TAILQ_FOREACH(ipv6route, &route6, next) {
40 if (!memcmp(ipv6route, route, sizeof(*route)))
41 return ipv6route;
42 }
43 return NULL;
44}
45
46static uint8_t
47convert_ip6_netmask_to_depth(uint8_t *netmask)

Callers 1

route_ip6_addFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected