Home
last modified time | relevance | path

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

/xnu-10063.141.1/bsd/netkey/
H A Dkey.c1552 struct sockaddr_in6 dest_in6 = {}; in key_checksa_present() local
1567 dest_in6.sin6_family = AF_INET6; in key_checksa_present()
1568 dest_in6.sin6_len = sizeof(dest_in6); in key_checksa_present()
1569 memcpy(&dest_in6.sin6_addr, remote_addr, sizeof(dest_in6.sin6_addr)); in key_checksa_present()
1570 if (IN6_IS_SCOPE_LINKLOCAL(&dest_in6.sin6_addr)) { in key_checksa_present()
1572 dest_in6.sin6_scope_id = remote_ifscope; in key_checksa_present()
1574 in6_verify_ifscope(&dest_in6.sin6_addr, dest_in6.sin6_scope_id); in key_checksa_present()
1575 dest_in6.sin6_scope_id = ntohs(dest_in6.sin6_addr.s6_addr16[1]); in key_checksa_present()
1576 dest_in6.sin6_addr.s6_addr16[1] = 0; in key_checksa_present()
1579 if (key_sockaddrcmp((struct sockaddr*)&dest_in6, in key_checksa_present()