Home | History | Annotate | Download | only in net

Lines Matching full:scopeid

1059 		u_int32_t scopeid;
1065 if (ip6_str2scopeid(scope, sin6, &scopeid) == -1) {
1069 sin6->sin6_scope_id = scopeid;
1242 ip6_str2scopeid(char *scope, struct sockaddr_in6 *sin6, u_int32_t *scopeid)
1250 assert(scopeid != NULL);
1254 /* empty scopeid portion is invalid */
1264 *scopeid = if_nametoindex(scope);
1265 if (*scopeid == 0)
1282 *scopeid = (u_int32_t)(lscopeid & 0xffffffffUL);
1283 if (errno == 0 && ep && *ep == '\0' && *scopeid == lscopeid)