Lines Matching refs:rloc
1641 cti_prefix_create_(struct in6_addr *prefix, int prefix_length, int metric, int flags, int rloc, bool stable, bool ncp,
1650 prefix_ret->rloc = rloc;
1875 bool nat64, bool stable, offmesh_route_preference_t preference, int rloc,
1886 route_ret->rloc = rloc;
1911 int rloc = 0, prefix_len = 0;
1947 } else if (!strcmp(key, "rloc")) {
1948 rloc = (int)xpc_dictionary_get_uint64(array_sub_dict, "value");
2001 cti_route_t *r = cti_route_create(&prefix_addr, prefix_len, origin, nat64, stable, pref, rloc, next_hop_is_host);
2008 PUB_S_SRP " stable:" PUB_S_SRP " preference:%d rloc:0x%04x next_hop_is_host:" PUB_S_SRP,
2011 stable ? "yes" : "no", pref, rloc, next_hop_is_host ? "yes" : "no");
2097 int rloc = 0, prefix_len = 0, flags = 0;
2151 if (strncmp(token, "rloc:", 5)) {
2152 ERROR("expecting rloc rather than " PRI_S_SRP " at %d", token, index);
2156 rloc = (int)strtol(token + 5, &endptr, 16);
2165 INFO("got prefix " PRI_SEGMENTED_IPv6_ADDR_SRP " len %d origin:" PUB_S_SRP " stable:" PUB_S_SRP " flags:%x rloc:%04x",
2167 ncp ? "ncp" : "user", stable ? "yes" : "no", flags, rloc);
2168 cti_prefix_t *r = cti_prefix_create(&prefix_addr, prefix_len, 0, flags, rloc, stable, ncp);