Lines Matching full:gateway
272 property.first == "Gateway") in extractHypervisorInterfaceData()
274 // Type & Gateway is not used in extractHypervisorInterfaceData()
403 * @brief Sets the Hypervisor Interface Gateway DBUS
406 * @param[in] gateway Gateway from the incoming request
413 const std::string& gateway) in setHypervisorIPv4Gateway() argument
416 "Setting the DefaultGateway to the last configured gateway"); in setHypervisorIPv4Gateway()
418 setDbusProperty(asyncResp, "IPv4StaticAddresses/1/Gateway", in setHypervisorIPv4Gateway()
423 "DefaultGateway", gateway); in setHypervisorIPv4Gateway()
431 * @param[in] gateway IPv4 address of this interfaces gateway
439 const std::string& gateway, const std::string& address, in createHypervisorIPv4() argument
443 setHypervisorIPv4Gateway(asyncResp, gateway); in createHypervisorIPv4()
460 std::string gateway = "0.0.0.0"; in deleteHypervisorIPv4() local
463 setHypervisorIPv4Gateway(asyncResp, gateway); in deleteHypervisorIPv4()
492 ipv4["Gateway"] = ethData.defaultGateway; in parseInterfaceData()
561 std::string gateway; in handleHypervisorIPv4StaticPatch() local
565 "Gateway", gateway, // in handleHypervisorIPv4StaticPatch()
587 if (!ip_util::ipv4VerifyIpAndGetBitcount(gateway)) in handleHypervisorIPv4StaticPatch()
589 messages::propertyValueFormatError(asyncResp->res, gateway, in handleHypervisorIPv4StaticPatch()
590 pathString + "/Gateway"); in handleHypervisorIPv4StaticPatch()
596 createHypervisorIPv4(ifaceId, prefixLength, gateway, address, asyncResp); in handleHypervisorIPv4StaticPatch()