Home | History | Annotate | Download | only in Ip4Dxe

Lines Matching defs:Gateway

139   address arithmetically AND-ed with the SubnetMask. The gateway address must be

149 are addressed to a local subnet (gateway address of 0.0.0.0).
163 @param[in] GatewayAddress The unicast gateway IPv4 address for this route.
1277 address arithmetically AND-ed with the SubnetMask. The gateway address must be
1287 are addressed to a local subnet (gateway address of 0.0.0.0).
1301 @param[in] GatewayAddress The unicast gateway IPv4 address for this route.
1376 // the gateway address must be a unicast on the connected network if not zero.
1455 IP4_ADDR Gateway;
1515 // Check the source and gateway: they must be a valid unicast.
1516 // Gateway must also be on the connected network.
1522 CopyMem (&Gateway, &Override->GatewayAddress, sizeof (IP4_ADDR));
1525 Gateway = NTOHL (Gateway);
1535 // If gateway isn't zero, it must be a unicast address, and
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)))) {
1709 IP4_ADDR GateWay;
1792 GateWay = IP4_ALLZERO_ADDRESS;
1822 CopyMem (&GateWay, &Override->GatewayAddress, sizeof (IP4_ADDR));
1825 GateWay = NTOHL (GateWay);
1828 GateWay = IP4_ALLZERO_ADDRESS;
1910 GateWay,