Searched refs:RemoteAddress (Results 1 - 25 of 48) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/GetNetByAddr/
H A DGetNetByAddr.c42 UINT32 RemoteAddress[4]; local
52 &RemoteAddress[0],
53 &RemoteAddress[1],
54 &RemoteAddress[2],
55 &RemoteAddress[3]))
56 || ( 255 < RemoteAddress[0])
57 || ( 255 < RemoteAddress[1])
58 || ( 255 < RemoteAddress[2])
59 || ( 255 < RemoteAddress[3])) {
66 IpAddress[0] = (UINT8)RemoteAddress[
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/RawIp4Tx/
H A DRawIp4Tx.c37 UINT32 RemoteAddress[4]; local
62 &RemoteAddress[0],
63 &RemoteAddress[1],
64 &RemoteAddress[2],
65 &RemoteAddress[3]))
66 || ( 224 < RemoteAddress[0])
67 || ( 255 < RemoteAddress[1])
68 || ( 255 < RemoteAddress[2])
69 || ( 255 < RemoteAddress[3])
70 || (( 0 == RemoteAddress[
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/GetHostByAddr/
H A DGetHostByAddr.c50 UINT32 RemoteAddress[4]; local
58 &RemoteAddress[0],
59 &RemoteAddress[1],
60 &RemoteAddress[2],
61 &RemoteAddress[3]))
62 || ( 255 < RemoteAddress[0])
63 || ( 255 < RemoteAddress[1])
64 || ( 255 < RemoteAddress[2])
65 || ( 255 < RemoteAddress[3])) {
72 IpAddress[0] = (UINT8)RemoteAddress[
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/DataSink/
H A DDataSink.c45 struct sockaddr_in RemoteAddress; member in struct:_DT_PORT
146 Port[ Index ].RemoteAddress.sin_len = 0;
147 Port[ Index ].RemoteAddress.sin_family = 0;
148 Port[ Index ].RemoteAddress.sin_port = 0;
149 Port[ Index ].RemoteAddress.sin_addr.s_addr= 0;
277 struct sockaddr_in RemoteAddress; local
332 Port[ Index ].RemoteAddress.sin_addr.s_addr & 0xff,
333 ( Port[ Index ].RemoteAddress.sin_addr.s_addr >> 8 ) & 0xff,
334 ( Port[ Index ].RemoteAddress.sin_addr.s_addr >> 16 ) & 0xff,
335 ( Port[ Index ].RemoteAddress
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/OobTx/
H A DOobTx.c41 UINT32 RemoteAddress[4]; local
68 &RemoteAddress[0],
69 &RemoteAddress[1],
70 &RemoteAddress[2],
71 &RemoteAddress[3]))
72 || ( 224 < RemoteAddress[0])
73 || ( 255 < RemoteAddress[1])
74 || ( 255 < RemoteAddress[2])
75 || ( 255 < RemoteAddress[3])
76 || (( 0 == RemoteAddress[
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/TftpServer/
H A DTftpServer.c73 CopyMem ( &pContext->RemoteAddress,
74 &pTftpServer->RemoteAddress,
75 sizeof ( pContext->RemoteAddress ));
88 (UINT8)pContext->RemoteAddress.sin_addr.s_addr,
89 (UINT8)( pContext->RemoteAddress.sin_addr.s_addr >> 8 ),
90 (UINT8)( pContext->RemoteAddress.sin_addr.s_addr >> 16 ),
91 (UINT8)( pContext->RemoteAddress.sin_addr.s_addr >> 24 ),
92 htons ( pContext->RemoteAddress.sin_port )));
143 if (( pTftpServer->RemoteAddress.sin_addr.s_addr == pContext->RemoteAddress
[all...]
H A DTftpServer.h139 struct sockaddr_in RemoteAddress; ///< Remote address member in struct:_TSDT_CONNECTION_CONTEXT
189 struct sockaddr_in RemoteAddress; ///< Remote address member in struct:__anon9942
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/EfiSocketLib/
H A DTcp4.c117 UINT32 RemoteAddress; local
155 RemoteAddress = pTcp4->ConfigData.AccessPoint.RemoteAddress.Addr[3];
156 RemoteAddress <<= 8;
157 RemoteAddress |= pTcp4->ConfigData.AccessPoint.RemoteAddress.Addr[2];
158 RemoteAddress <<= 8;
159 RemoteAddress |= pTcp4->ConfigData.AccessPoint.RemoteAddress.Addr[1];
160 RemoteAddress <<
[all...]
H A DUdp4.c418 &pUdp4->ConfigData.RemoteAddress.Addr[0],
460 pUdp4->ConfigData.RemoteAddress.Addr[0] = (UINT8)( pRemoteAddress->sin_addr.s_addr );
461 pUdp4->ConfigData.RemoteAddress.Addr[1] = (UINT8)( pRemoteAddress->sin_addr.s_addr >> 8 );
462 pUdp4->ConfigData.RemoteAddress.Addr[2] = (UINT8)( pRemoteAddress->sin_addr.s_addr >> 16 );
463 pUdp4->ConfigData.RemoteAddress.Addr[3] = (UINT8)( pRemoteAddress->sin_addr.s_addr >> 24 );
623 pConfigData->RemoteAddress.Addr[0],
624 pConfigData->RemoteAddress.Addr[1],
625 pConfigData->RemoteAddress.Addr[2],
626 pConfigData->RemoteAddress.Addr[3],
680 pConfigData->RemoteAddress
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Udp4Dxe/
H A DUdp4Main.c141 IP4_ADDR RemoteAddress; local
165 CopyMem (&RemoteAddress, &UdpConfigData->RemoteAddress, sizeof (IP4_ADDR));
169 RemoteAddress = NTOHL (RemoteAddress);
175 !((RemoteAddress == 0) || NetIp4IsUnicast (RemoteAddress, 0)))) {
178 // a valid unicast IPv4 address or RemoteAddress is not a valid unicast IPv4 address
249 CopyMem (&RemoteAddr, &Instance->ConfigData.RemoteAddress, sizeof (IP4_ADDR));
628 CopyMem (&Destination, &ConfigData->RemoteAddress, sizeo
[all...]
H A DUdp4Impl.c703 if (!EFI_IP4_EQUAL (&NewConfigData->RemoteAddress, &OldConfigData->RemoteAddress)) {
710 if (!EFI_IP4_EQUAL (&NewConfigData->RemoteAddress, &mZeroIp4Addr) &&
866 } else if (EFI_IP4_EQUAL (&ConfigData->RemoteAddress, &mZeroIp4Addr)) {
868 // the configured RemoteAddress is all zero, and the user doens't override the
1300 if (!EFI_IP4_EQUAL (&ConfigData->RemoteAddress, &mZeroIp4Addr) &&
1301 !EFI_IP4_EQUAL (&ConfigData->RemoteAddress, &Udp4Session->SourceAddress)
1979 Udp4ServicePoint->RemoteAddress = Udp4Instance->ConfigData.RemoteAddress;
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DUdp6.h54 EFI_IPv6_ADDRESS RemoteAddress; member in struct:__anon12361
169 /// If RemoteAddress is not 0::/128, this EFI UDPv6 Protocol instance will be connected to
170 /// RemoteAddress; i.e., outgoing packets of this EFI UDPv6 Protocol instance will be sent
173 EFI_IPv6_ADDRESS RemoteAddress; member in struct:__anon12365
178 /// to client. Ignored if RemoteAddress is 0::/128 and ignored for incoming filtering if
351 - UdpConfigData.RemoteAddress is not a valid unicast IPv6 address if it
436 UdpConfigData.RemoteAddress is unspecified.
H A DTcp4.h42 EFI_IPv4_ADDRESS RemoteAddress; member in struct:__anon12322
57 EFI_IPv4_ADDRESS RemoteAddress; member in struct:__anon12324
H A DTcp6.h63 EFI_IPv6_ADDRESS RemoteAddress; member in struct:__anon12337
103 /// RemoteAddress. If ActiveFlag is TRUE the instance will
104 /// connect to the RemoteAddress, i.e., outgoing segments will be
110 EFI_IPv6_ADDRESS RemoteAddress; member in struct:__anon12339
540 - Tcp6ConfigData->AccessPoint.RemoteAddress isn't a valid unicast
542 - Tcp6ConfigData->AccessPoint.RemoteAddress is zero or
H A DUdp4.h44 EFI_IPv4_ADDRESS RemoteAddress; member in struct:__anon12352
88 EFI_IPv4_ADDRESS RemoteAddress; member in struct:__anon12356
175 @retval EFI_INVALID_PARAMETER UdpConfigData.RemoteAddress is not a valid unicast IPv4 address if it
H A DIpSecConfig.h92 /// Specifies the actual number of entries in RemoteAddress.
99 EFI_IP_ADDRESS_INFO *RemoteAddress; member in struct:_EFI_IPSEC_SPD_SELECTOR
346 /// Bit 1: EFI_IPSEC_SPD_SELECTOR.RemoteAddress
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Udp6Dxe/
H A DUdp6Main.c120 UdpConfigData.RemoteAddress is not a valid unicast
149 EFI_IPv6_ADDRESS RemoteAddress; local
173 IP6_COPY_ADDRESS (&RemoteAddress, &UdpConfigData->RemoteAddress);
176 (!NetIp6IsUnspecifiedAddr (&RemoteAddress) && !NetIp6IsValidUnicast (&RemoteAddress))
180 // if it is not IPv6 address or RemoteAddress is not a valid unicast IPv6
252 IP6_COPY_ADDRESS (&RemoteAddr, &Instance->ConfigData.RemoteAddress);
437 instance's UdpConfigData.RemoteAddress is unspecified.
560 IP6_COPY_ADDRESS (&Destination, &ConfigData->RemoteAddress);
[all...]
H A DUdp6Impl.c695 if (!EFI_IP6_EQUAL (&NewConfigData->RemoteAddress, &OldConfigData->RemoteAddress)) {
702 if (!NetIp6IsUnspecifiedAddr (&NewConfigData->RemoteAddress) &&
739 IP6_COPY_ADDRESS (&Ip6ConfigData->DestinationAddress, &Udp6ConfigData->RemoteAddress);
835 NetIp6IsUnspecifiedAddr (&ConfigData->RemoteAddress)
844 !NetIp6IsUnspecifiedAddr (&ConfigData->RemoteAddress)
847 // The ConfigData.RemoteAddress is not zero and the UdpSessionData.DestinationAddress
852 } else if (NetIp6IsUnspecifiedAddr (&ConfigData->RemoteAddress)) {
854 // The configured RemoteAddress is all zero, and the user doesn't override the
1293 if (!NetIp6IsUnspecifiedAddr (&ConfigData->RemoteAddress)
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/DataSource/
H A DDataSource.c189 INT32 RemoteAddress; local
212 RemoteAddress = Value1
216 RemoteHostAddress.sin_addr.s_addr = (UINT32) RemoteAddress;
293 UINT32 RemoteAddress; local
299 RemoteAddress = RemoteHostAddress.sin_addr.s_addr;
301 RemoteAddress & 0xff,
302 ( RemoteAddress >> 8 ) & 0xff,
303 ( RemoteAddress >> 16 ) & 0xff,
304 ( RemoteAddress >> 24 ) & 0xff,
334 RemoteAddress
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IpSecDxe/
H A DIpSecConfigImpl.c216 // SpdSel1->RemoteAddress to SpdSel2->RemoteAddress. If all match, return
244 &SpdSel1->RemoteAddress[Index],
245 SpdSel2->RemoteAddress,
256 &SpdSel2->RemoteAddress[Index],
257 SpdSel1->RemoteAddress,
274 // SpdSel1->RemoteAddress doesn't equal to SpdSel2->RemoteAddress. Try to compare
275 // the RemoteAddress to LocalAddress.
280 &SpdSel1->RemoteAddress[Inde
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/WebServer/
H A DWebServer.c340 struct sockaddr RemoteAddress; local
363 RemoteAddressLength = sizeof ( RemoteAddress );
365 &RemoteAddress,
H A DHTTP.c405 struct sockaddr_in RemoteAddress; local
416 RetVal = getpeername ( SocketFD, (struct sockaddr *)&RemoteAddress, &LengthInBytes );
437 Status = HttpSendIpAddress ( SocketFD, pPort, &RemoteAddress );
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/TcpDxe/
H A DTcpDispatcher.c106 CopyMem (&AccessPoint->RemoteAddress, &Tcb->RemoteEnd.Ip, sizeof (EFI_IPv4_ADDRESS));
187 IP6_COPY_ADDRESS (&AccessPoint->RemoteAddress, &Tcb->RemoteEnd.Ip);
481 &CfgData->Tcp6CfgData.AccessPoint.RemoteAddress
567 CopyMem (&Tcb->RemoteEnd.Ip, &CfgData->Tcp4CfgData.AccessPoint.RemoteAddress, sizeof (IP4_ADDR));
578 IP6_COPY_ADDRESS (&Tcb->RemoteEnd.Ip, &CfgData->Tcp6CfgData.AccessPoint.RemoteAddress);
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/IpsecConfig/
H A DPolicyEntryOperation.c78 Status = EfiInetAddrRange ((CHAR16 *) ValueStr, Selector->RemoteAddress);
244 (*Selector)->RemoteAddress = (*Selector)->LocalAddress + 1;
703 (*Data)->SpdSelector->RemoteAddress = (EFI_IP_ADDRESS_INFO *) ALIGN_POINTER (
1352 NewSelector->RemoteAddress = OldSelector->RemoteAddress;
1354 (CompareMem (NewSelector->RemoteAddress, OldSelector->RemoteAddress, NewSelector->RemoteAddressCount * sizeof (EFI_IP_ADDRESS_INFO)) != 0)) {
1713 OldData->SpdSelector->RemoteAddress = NewData->SpdSelector->RemoteAddress;
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IpSecDxe/Ikev2/
H A DUtility.c839 if (ChildSaSession->SpdSelector->RemoteAddress != NULL) {
840 FreePool (ChildSaSession->SpdSelector->RemoteAddress);
1439 ChildSaSession->SpdSelector->LocalAddress = ChildSaSession->SpdSelector->RemoteAddress;
1441 ChildSaSession->SpdSelector->RemoteAddress = TempAddressInfo;
1489 ChildSaSession->SpdSelector->RemoteAddress = ChildSaSession->SpdSelector->LocalAddress;
1755 ChildSaSession->SpdSelector->RemoteAddress = AllocateCopyPool (
1758 ChildSaSession->Spd->Selector->RemoteAddress
1767 ASSERT (ChildSaSession->SpdSelector->RemoteAddress != NULL);
1939 SpdSelector->RemoteAddress,

Completed in 418 milliseconds

12