Home | History | Annotate | Download | only in Udp6Dxe

Lines Matching refs:NewConfigData

655   This function is used to check whether the NewConfigData has any un-reconfigurable

660 @param[in] NewConfigData Pointer to the new ConfigData.
662 @retval TRUE The instance is reconfigurable according to the NewConfigData.
669 IN EFI_UDP6_CONFIG_DATA *NewConfigData
672 if ((NewConfigData->AcceptAnyPort != OldConfigData->AcceptAnyPort) ||
673 (NewConfigData->AcceptPromiscuous != OldConfigData->AcceptPromiscuous) ||
674 (NewConfigData->AllowDuplicatePort != OldConfigData->AllowDuplicatePort)
682 if ((!NewConfigData->AcceptAnyPort) &&
683 (NewConfigData->StationPort != OldConfigData->StationPort)
691 if (!EFI_IP6_EQUAL (&NewConfigData->StationAddress, &OldConfigData->StationAddress)) {
699 if (!EFI_IP6_EQUAL (&NewConfigData->RemoteAddress, &OldConfigData->RemoteAddress)) {
706 if (!NetIp6IsUnspecifiedAddr (&NewConfigData->RemoteAddress) &&
707 (NewConfigData->RemotePort != OldConfigData->RemotePort)