Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Udp4Dxe/
DUdp4Impl.c136 IN EFI_UDP4_SESSION_DATA *Udp4Session
1276 IN EFI_UDP4_SESSION_DATA *Udp4Session in Udp4MatchDgram() argument
1291 if ((!ConfigData->AcceptAnyPort && (Udp4Session->DestinationPort != ConfigData->StationPort)) || in Udp4MatchDgram()
1292 ((ConfigData->RemotePort != 0) && (Udp4Session->SourcePort != ConfigData->RemotePort)) in Udp4MatchDgram()
1301 !EFI_IP4_EQUAL (&ConfigData->RemoteAddress, &Udp4Session->SourceAddress) in Udp4MatchDgram()
1310 EFI_IP4_EQUAL (&Udp4Session->DestinationAddress, &ConfigData->StationAddress) in Udp4MatchDgram()
1319 CopyMem (&Destination, &Udp4Session->DestinationAddress, sizeof (IP4_ADDR)); in Udp4MatchDgram()
1608 EFI_UDP4_SESSION_DATA *Udp4Session; in Udp4Demultiplex() local
1636 Udp4Session = &RxData.UdpSession; in Udp4Demultiplex()
1637 Udp4Session->SourcePort = NTOHS (Udp4Header->SrcPort); in Udp4Demultiplex()
[all …]
/device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/
DPxeBcImpl.c1061 EFI_UDP4_SESSION_DATA Udp4Session; in EfiPxeBcUdpWrite() local
1171 ZeroMem (&Udp4Session, sizeof (EFI_UDP4_SESSION_DATA)); in EfiPxeBcUdpWrite()
1172 CopyMem (&Udp4Session.DestinationAddress, DestIp, sizeof (EFI_IPv4_ADDRESS)); in EfiPxeBcUdpWrite()
1173 Udp4Session.DestinationPort = *DestPort; in EfiPxeBcUdpWrite()
1175 CopyMem (&Udp4Session.SourceAddress, SrcIp, sizeof (EFI_IPv4_ADDRESS)); in EfiPxeBcUdpWrite()
1178 Udp4Session.SourcePort = *SrcPort; in EfiPxeBcUdpWrite()
1185 &Udp4Session, in EfiPxeBcUdpWrite()
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/UefiPxeBcDxe/
DPxeBcImpl.c1369 EFI_UDP4_SESSION_DATA Udp4Session; in EfiPxeBcUdpWrite() local
1446 ZeroMem (&Udp4Session, sizeof (EFI_UDP4_SESSION_DATA)); in EfiPxeBcUdpWrite()
1448 CopyMem (&Udp4Session.DestinationAddress, DestIp, sizeof (EFI_IPv4_ADDRESS)); in EfiPxeBcUdpWrite()
1449 Udp4Session.DestinationPort = *DestPort; in EfiPxeBcUdpWrite()
1451 CopyMem (&Udp4Session.SourceAddress, SrcIp, sizeof (EFI_IPv4_ADDRESS)); in EfiPxeBcUdpWrite()
1454 Udp4Session.SourcePort = *SrcPort; in EfiPxeBcUdpWrite()
1478 Udp4TxData->UdpSessionData = &Udp4Session; in EfiPxeBcUdpWrite()