HomeSort by relevance Sort by last modified time
    Searched refs:Gateway (Results 1 - 25 of 63) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/UefiPxeBcDxe/
PxeBcSupport.h 39 @param Gateway Pointer to the gateway ip address.
55 @retval Others Please examine the function Udp4->Routes(Udp4, FALSE, &mZeroIp4Addr, &mZeroIp4Addr, Gateway) returns.
63 IN EFI_IPv4_ADDRESS *Gateway,
PxeBcSupport.c 43 @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);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Mtftp4Dxe/
Mtftp4Impl.c 87 Instance->Gateway = 0;
172 It will first validate whether the server is a valid unicast. If a gateway
192 IP4_ADDR Gateway;
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.
    [all...]
Mtftp4Impl.h 130 IP4_ADDR Gateway;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Route.h 29 /// network. The nexthop is the gateway to send the packet to in
31 /// on, the gateway is the destination of the IP packet itself. Route
122 @param[in] Gateway The next hop address
134 IN IP4_ADDR Gateway
143 @param Gateway The next hop address
155 IN IP4_ADDR Gateway
Ip4Icmp.c 107 IP4_ADDR Gateway;
116 Gateway = NTOHL (Icmp->Fourth);
119 // discard the packet if the new gateway address it specifies
123 if ((IpIf == NULL) || !IP4_NET_EQUAL (Gateway, IpIf->Ip, IpIf->SubnetMask)) {
143 // Only update the route cache's gateway if the source of the
144 // Redirect is the current first-hop gateway
147 CacheEntry->NextHop = Gateway;
Ip4Route.c 19 and Gateway.
23 @param[in] GateWay The nexthop address
33 IN IP4_ADDR GateWay
49 RtEntry->NextHop = GateWay;
80 @param[in] GateWay The next hop address
92 IN IP4_ADDR GateWay,
109 RtCacheEntry->NextHop = GateWay;
302 @param[in] Gateway The next hop address
314 IN IP4_ADDR Gateway
333 if (IP4_NET_EQUAL (RtEntry->Dest, Dest, Netmask) && (RtEntry->NextHop == Gateway)) {
    [all...]
Ip4Config2Impl.h 116 EFI_IPv4_ADDRESS *Gateway;
146 // EFI_IPv4_ADDRESS Gateway[];
161 EFI_IPv4_ADDRESS *GatewayAddress; ///< Gateway address
162 UINT32 GatewayAddressCount; ///< Gateway address count
Ip4Config2Nv.c 472 // Get the Gateway info.
561 EFI_IP_ADDRESS Gateway;
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));
759 // Set gateway.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiConfigNVDataStruc.h 91 CHAR16 Gateway[IP4_STR_MAX_SIZE];
IScsiTcp4Io.h 24 EFI_IPv4_ADDRESS Gateway;
IScsiConfig.c 380 IScsiIpToStr (&SessionConfigData->Gateway, IfrNvData->Gateway);
677 EFI_IP_ADDRESS Gateway;
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.v4, sizeof (Gateway.v4));
    [all...]
IScsiMisc.h 34 EFI_IPv4_ADDRESS Gateway;
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
UdpIoLib.h 121 EFI_IPv4_ADDRESS Gateway;
289 @param[in] Gateway The gateway to use.
305 IN EFI_IP_ADDRESS *Gateway OPTIONAL,
TcpIoLib.h 37 EFI_IPv4_ADDRESS Gateway;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/IndustryStandard/
IScsiBootFirmwareTable.h 107 EFI_IPv6_ADDRESS Gateway;
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
IScsiBootFirmwareTable.h 114 EFI_IPv6_ADDRESS Gateway;
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellNetwork1CommandsLib/
Ifconfig.c 603 EFI_IPv4_ADDRESS Gateway;
689 // Print default gateway of the interface.
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;
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
IScsiConfig.c 383 CopyMem (&Ip.v4, &SessionConfigData->Gateway, sizeof (EFI_IPv4_ADDRESS));
384 IScsiIpToStr (&Ip, FALSE, IfrNvData->Gateway);
441 EFI_IP_ADDRESS Gateway;
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 are not in the same subnet.",
    [all...]
IScsiConfigNVDataStruc.h 154 CHAR16 Gateway[IP4_STR_MAX_SIZE];
IScsiIbft.c 314 IScsiMapV4ToV6Addr (&NvData->Gateway.v4, &Nic->Gateway);
323 CopyMem (&Nic->Gateway, &NvData->Gateway, sizeof (EFI_IPv6_ADDRESS));
IScsiMisc.h 44 EFI_IP_ADDRESS Gateway;
  /prebuilts/go/darwin-x86/src/net/http/
status.go 131 StatusBadGateway: "Bad Gateway",
133 StatusGatewayTimeout: "Gateway Timeout",
  /prebuilts/go/linux-x86/src/net/http/
status.go 131 StatusBadGateway: "Bad Gateway",
133 StatusGatewayTimeout: "Gateway Timeout",
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeUdpIoLib/
DxeUdpIoLib.c 394 @param[in] Gateway The overrided next hop.
407 IN EFI_IP_ADDRESS *Gateway OPTIONAL,
499 if (Gateway != NULL && (Gateway->Addr[0] != 0)) {
500 Ip = HTONL (Gateway->Addr[0]);
501 CopyMem (&TxToken->Gateway, &Ip, sizeof (EFI_IPv4_ADDRESS));
502 ((EFI_UDP4_TRANSMIT_DATA *) Data)->GatewayAddress = &TxToken->Gateway;
909 @param[in] Gateway The gateway to use.
925 IN EFI_IP_ADDRESS *Gateway OPTIONAL,
    [all...]

Completed in 609 milliseconds

1 2 3