Home
last modified time | relevance | path

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

/titanic_44/usr/src/cmd/cmd-inet/usr.lib/in.mpathd/
H A Dmpd_tables.c878 struct sockaddr_in6 testaddr; in phyint_inst_v6_sockinit() local
913 bzero(&testaddr, sizeof (testaddr)); in phyint_inst_v6_sockinit()
914 testaddr.sin6_family = AF_INET6; in phyint_inst_v6_sockinit()
915 testaddr.sin6_port = 0; in phyint_inst_v6_sockinit()
916 testaddr.sin6_addr = pii->pii_probe_logint->li_addr; in phyint_inst_v6_sockinit()
918 if (bind(pii->pii_probe_sock, (struct sockaddr *)&testaddr, in phyint_inst_v6_sockinit()
919 sizeof (testaddr)) < 0) { in phyint_inst_v6_sockinit()
998 struct sockaddr_in testaddr; in phyint_inst_v4_sockinit() local
1036 bzero(&testaddr, sizeof (testaddr)); in phyint_inst_v4_sockinit()
1037 testaddr.sin_family = AF_INET; in phyint_inst_v4_sockinit()
[all …]
/titanic_44/usr/src/cmd/cmd-inet/usr.lib/in.ndpd/
H A Ddefs.h145 extern int do_dad(char *ifname, struct sockaddr_in6 *testaddr);
/titanic_44/usr/src/uts/common/dtrace/
H A Ddtrace.c382 #define DTRACE_INRANGE(testaddr, testsz, baseaddr, basesz) \ argument
383 ((testaddr) - (uintptr_t)(baseaddr) < (basesz) && \
384 (testaddr) + (testsz) - (uintptr_t)(baseaddr) <= (basesz) && \
385 (testaddr) + (testsz) >= (testaddr))