Home
last modified time | relevance | path

Searched refs:router_addr (Results 1 – 2 of 2) sorted by relevance

/third_party/lwip/src/core/ipv6/
Dnd6.c114 static s8_t nd6_get_router(const ip6_addr_t *router_addr, struct netif *netif);
115 static s8_t nd6_new_router(const ip6_addr_t *router_addr, struct netif *netif);
1898 nd6_get_router(const ip6_addr_t *router_addr, struct netif *netif) argument
1902 IP6_ADDR_ZONECHECK_NETIF(router_addr, netif);
1908 ip6_addr_cmp(router_addr, &(default_router_list[i].neighbor_entry->next_hop_address))) {
1925 nd6_new_router(const ip6_addr_t *router_addr, struct netif *netif) argument
1931 IP6_ADDR_ZONECHECK_NETIF(router_addr, netif);
1934 neighbor_index = nd6_find_neighbor_cache_entry(router_addr);
1942 ip6_addr_set(&(neighbor_cache[neighbor_index].next_hop_address), router_addr);
/third_party/toybox/toys/pending/
Droute.c244 …unsigned int router_addr = ~(unsigned int)(((struct sockaddr_in *)&((rt)->rt_dst))->sin_addr.s_add… in verify_netmask() local
252 if (addr_mask & router_addr) perror_exit("conflicting netmask and route address"); in verify_netmask()