Searched defs:Gateway (Results 1 - 25 of 25) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
H A DIScsiMisc.h34 EFI_IPv4_ADDRESS Gateway; member in struct:__anon6438
H A DIScsiTcp4Io.h24 EFI_IPv4_ADDRESS Gateway; member in struct:_TCP4_IO_CONFIG_DATA
H A DIScsiConfigNVDataStruc.h91 CHAR16 Gateway[IP4_STR_MAX_SIZE]; member in struct:__anon6437
H A DIScsiConfig.c380 IScsiIpToStr (&SessionConfigData->Gateway, IfrNvData->Gateway);
677 EFI_IP_ADDRESS Gateway; local
752 IScsiUnicodeStrToAsciiStr (IfrNvData->Gateway, Ip4String);
753 Status = IScsiAsciiStrToIp (Ip4String, &Gateway.v4);
754 if (EFI_ERROR (Status) || ((Gateway.Addr[0] != 0) && !NetIp4IsUnicast (NTOHL (Gateway.Addr[0]), 0))) {
755 CreatePopUp (EFI_LIGHTGRAY | EFI_BACKGROUND_BLUE, &Key, L"Invalid Gateway!", NULL);
758 CopyMem (&Private->Current->SessionConfigData.Gateway, &Gateway
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/UefiPxeBcDxe/
H A DPxeBcSupport.c43 @param Gateway Pointer to the gateway ip address.
59 @retval Others Please examine the function Udp4->Routes(Udp4, FALSE, &mZeroIp4Addr, &mZeroIp4Addr, Gateway) returns.
67 IN EFI_IPv4_ADDRESS *Gateway,
92 if (!EFI_ERROR (Status) && (Gateway->Addr[0] != 0)) {
96 Status = Udp4->Routes (Udp4, FALSE, &mZeroIp4Addr, &mZeroIp4Addr, Gateway);
63 PxeBcConfigureUdpWriteInstance( IN EFI_UDP4_PROTOCOL *Udp4, IN EFI_IPv4_ADDRESS *StationIp, IN EFI_IPv4_ADDRESS *SubnetMask, IN EFI_IPv4_ADDRESS *Gateway, IN OUT UINT16 *SrcPort ) argument
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
H A DIp4Icmp.c107 IP4_ADDR Gateway; local
116 Gateway = NTOHL (Icmp->Fourth);
123 if ((IpIf == NULL) || !IP4_NET_EQUAL (Gateway, IpIf->Ip, IpIf->SubnetMask)) {
147 CacheEntry->NextHop = Gateway;
H A DIp4Config2Impl.h116 EFI_IPv4_ADDRESS *Gateway; member in union:__anon6441
146 // EFI_IPv4_ADDRESS Gateway[];
161 EFI_IPv4_ADDRESS *GatewayAddress; ///< Gateway address
162 UINT32 GatewayAddressCount; ///< Gateway address count
H A DIp4Config2Nv.c472 // Get the Gateway info.
561 EFI_IP_ADDRESS Gateway; local
623 Status = Ip4Config2StrToIp (IfrFormNvData->GatewayAddress, &Gateway.v4);
624 if (EFI_ERROR (Status) || ((Gateway.Addr[0] != 0) && !NetIp4IsUnicast (NTOHL (Gateway.Addr[0]), 0))) {
625 CreatePopUp (EFI_LIGHTGRAY | EFI_BACKGROUND_BLUE, &Key, L"Invalid Gateway!", NULL);
671 CopyMem(Ip4NvData->GatewayAddress, &Gateway.v4, sizeof(EFI_IPv4_ADDRESS));
1116 EFI_IP_ADDRESS Gateway; local
1164 Status = Ip4Config2StrToIp (IfrFormNvData->GatewayAddress, &Gateway.v4);
1165 if (EFI_ERROR (Status) || ((Gateway
[all...]
H A DIp4Config2Impl.c594 @param[in] GatewayAddress Gateway to be set.
1152 // Clean the ManualAddress, Gateway and DnsServers, shrink the variable
1328 IP4_ADDR Gateway; local
1352 CopyMem (&Gateway, NewGateway + Index1, sizeof (IP4_ADDR));
1354 if (!NetIp4IsUnicast (NTOHL (Gateway), 0)) {
1368 OldGateway = DataItem->Data.Gateway;
1386 CopyMem (&Gateway, OldGateway + Index1, sizeof (IP4_ADDR));
1391 NTOHL (Gateway)
1398 CopyMem (&Gateway, NewGateway + Index1, sizeof (IP4_ADDR));
1403 NTOHL (Gateway)
[all...]
H A DIp4Impl.c1455 IP4_ADDR Gateway; local
1516 // Gateway must also be on the connected network.
1522 CopyMem (&Gateway, &Override->GatewayAddress, sizeof (IP4_ADDR));
1525 Gateway = NTOHL (Gateway);
1538 if ((Gateway != IP4_ALLZERO_ADDRESS) &&
1539 ((NetGetIpClass (Gateway) > IP4_ADDR_CLASSC) ||
1540 !IP4_NET_EQUAL (Gateway, IpIf->Ip, IpIf->SubnetMask) ||
1541 IP4_IS_BROADCAST (Ip4GetNetCast (Gateway, IpIf)))) {
/device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
H A DIScsiMisc.h44 EFI_IP_ADDRESS Gateway; member in struct:_ISCSI_SESSION_CONFIG_NVDATA
H A DIScsiConfig.c383 CopyMem (&Ip.v4, &SessionConfigData->Gateway, sizeof (EFI_IPv4_ADDRESS));
384 IScsiIpToStr (&Ip, FALSE, IfrNvData->Gateway);
441 EFI_IP_ADDRESS Gateway; local
507 CopyMem (&Gateway.v4, &Attempt->SessionConfigData.Gateway, sizeof (Gateway.v4));
509 if ((Gateway.Addr[0] != 0)) {
514 L"Gateway address is set but subnet mask is zero.",
519 } else if (!IP4_NET_EQUAL (HostIp.Addr[0], Gateway.Addr[0], SubnetMask.Addr[0])) {
523 L"Local IP and Gateway ar
2109 EFI_IP_ADDRESS Gateway; local
[all...]
H A DIScsiConfigNVDataStruc.h154 CHAR16 Gateway[IP4_STR_MAX_SIZE]; member in struct:_ISCSI_CONFIG_IFR_NVDATA
/device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
H A DTcpIoLib.h37 EFI_IPv4_ADDRESS Gateway; member in struct:__anon6189
H A DUdpIoLib.h121 EFI_IPv4_ADDRESS Gateway; member in struct:__anon6203
289 @param[in] Gateway The gateway to use.
305 IN EFI_IP_ADDRESS *Gateway OPTIONAL,
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/
H A DDhcp4Impl.c1486 EFI_IP_ADDRESS Gateway; local
1585 ZeroMem (&Gateway, sizeof (Gateway));
1587 CopyMem (&Gateway.v4, &Token->GatewayAddress, sizeof (EFI_IPv4_ADDRESS));
1588 Gateway.Addr[0] = NTOHL (Gateway.Addr[0]);
1594 Status = UdpIoSendDatagram (Instance->UdpIo, Wrap, &EndPoint, &Gateway, DhcpOnPacketSent, NULL);
H A DDhcp4Io.c329 EFI_IPv4_ADDRESS Gateway; local
371 CopyMem (&Gateway, &Ip, sizeof (EFI_IPv4_ADDRESS));
373 UdpIo->Protocol.Udp4->Routes (UdpIo->Protocol.Udp4, FALSE, &Subnet, &Subnet, &Gateway);
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Mtftp4Dxe/
H A DMtftp4Impl.c87 Instance->Gateway = 0;
192 IP4_ADDR Gateway; local
201 CopyMem (&Gateway, &Override->GatewayIp, sizeof (IP4_ADDR));
202 Gateway = NTOHL (Gateway);
204 if (!Config->UseDefaultSetting && (Gateway != 0)) {
211 if (!NetIp4IsUnicast (Gateway, Netmask) || !IP4_NET_EQUAL (Gateway, Ip, Netmask)) {
325 // The station IP address is manually configured and the Gateway IP is not 0.
450 CopyMem (&Instance->Gateway,
635 IP4_ADDR Gateway; local
[all...]
H A DMtftp4Impl.h130 IP4_ADDR Gateway; member in struct:_MTFTP4_PROTOCOL
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/IndustryStandard/
H A DIScsiBootFirmwareTable.h107 EFI_IPv6_ADDRESS Gateway; member in struct:__anon4669
/device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
H A DIp6ConfigImpl.h116 EFI_IPv6_ADDRESS *Gateway; member in union:__anon8438
149 // EFI_IPv6_ADDRESS Gateway[];
172 LIST_ENTRY GatewayAddress; ///< Gateway address
173 UINT32 GatewayAddressCount; ///< Gateway address count
/device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/
H A DPxeBcSupport.c488 @param[in] Gateway The pointer to the gateway address.
502 IN EFI_IPv4_ADDRESS *Gateway,
530 if (!EFI_ERROR (Status) && !EFI_IP4_EQUAL (Gateway, &mZeroIp4Addr)) {
534 Status = Udp4->Routes (Udp4, FALSE, &mZeroIp4Addr, &mZeroIp4Addr, Gateway);
605 @param[in] Gateway The pointer to the gateway address.
622 IN EFI_IPv4_ADDRESS *Gateway OPTIONAL,
658 if (Gateway != NULL) {
659 TxData->GatewayAddress = Gateway;
498 PxeBcConfigUdp4Write( IN EFI_UDP4_PROTOCOL *Udp4, IN EFI_IPv4_ADDRESS *StationIp, IN EFI_IPv4_ADDRESS *SubnetMask, IN EFI_IPv4_ADDRESS *Gateway, IN OUT UINT16 *SrcPort, IN BOOLEAN DoNotFragment ) argument
/device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
H A DIScsiBootFirmwareTable.h114 EFI_IPv6_ADDRESS Gateway; member in struct:__anon7143
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellNetwork1CommandsLib/
H A DIfconfig.c603 EFI_IPv4_ADDRESS Gateway; local
693 ZeroMem (&Gateway, sizeof (EFI_IPv4_ADDRESS));
698 CopyMem (&Gateway, &IfCb->IfInfo->RouteTable[Index].GatewayAddress, sizeof (EFI_IPv4_ADDRESS));
708 (UINTN)Gateway.Addr[0],
709 (UINTN)Gateway.Addr[1],
710 (UINTN)Gateway.Addr[2],
711 (UINTN)Gateway.Addr[3]
754 L"Gateway",
867 EFI_IPv4_ADDRESS Gateway; local
1051 Status = NetLibStrToIp4 (VarArg->Arg, &Gateway);
[all...]
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
H A DIp6.h242 EFI_IPv6_ADDRESS Gateway; member in struct:__anon8014
690 PrefixLength and Gateway are used as the key to each

Completed in 235 milliseconds