Lines Matching refs:DupAddrDetect
1061 IP6_DAD_ENTRY *DupAddrDetect; in Ip6FindDADEntry() local
1068 DupAddrDetect = NET_LIST_USER_STRUCT_S (Entry2, IP6_DAD_ENTRY, Link, IP6_DAD_ENTRY_SIGNATURE); in Ip6FindDADEntry()
1069 AddrInfo = DupAddrDetect->AddressInfo; in Ip6FindDADEntry()
1074 return DupAddrDetect; in Ip6FindDADEntry()
1477 IP6_DAD_ENTRY *DupAddrDetect; in Ip6ProcessNeighborSolicit() local
1585 DupAddrDetect = Ip6FindDADEntry (IpSb, &Target, &IpIf); in Ip6ProcessNeighborSolicit()
1586 if (DupAddrDetect != NULL) { in Ip6ProcessNeighborSolicit()
1605 Ip6OnDADFinished (FALSE, IpIf, DupAddrDetect); in Ip6ProcessNeighborSolicit()
1611 DupAddrDetect->Receive++; in Ip6ProcessNeighborSolicit()
1710 IP6_DAD_ENTRY *DupAddrDetect; in Ip6ProcessNeighborAdvertise() local
1769 DupAddrDetect = Ip6FindDADEntry (IpSb, &Target, &IpIf); in Ip6ProcessNeighborAdvertise()
1770 if (DupAddrDetect != NULL) { in Ip6ProcessNeighborAdvertise()
1775 Ip6OnDADFinished (FALSE, IpIf, DupAddrDetect); in Ip6ProcessNeighborAdvertise()
2770 IP6_DAD_ENTRY *DupAddrDetect; in Ip6NdFasterTimerTicking() local
2831 DupAddrDetect = NET_LIST_USER_STRUCT (Entry2, IP6_DAD_ENTRY, Link); in Ip6NdFasterTimerTicking()
2833 if ((DupAddrDetect->RetransTick == 0) || (--DupAddrDetect->RetransTick == 0)) { in Ip6NdFasterTimerTicking()
2837 if (DupAddrDetect->Transmit < DupAddrDetect->MaxTransmit) { in Ip6NdFasterTimerTicking()
2846 &DupAddrDetect->Destination, in Ip6NdFasterTimerTicking()
2847 &DupAddrDetect->AddressInfo->Address, in Ip6NdFasterTimerTicking()
2854 DupAddrDetect->Transmit++; in Ip6NdFasterTimerTicking()
2855 DupAddrDetect->RetransTick = IP6_GET_TICKS (IpSb->RetransTimer); in Ip6NdFasterTimerTicking()
2862 if ((DupAddrDetect->Receive == 0) || in Ip6NdFasterTimerTicking()
2863 (DupAddrDetect->Transmit <= DupAddrDetect->Receive)) { in Ip6NdFasterTimerTicking()
2867 Ip6OnDADFinished (Flag, IpIf, DupAddrDetect); in Ip6NdFasterTimerTicking()