summaryrefslogtreecommitdiff
path: root/redfish-core/lib/ethernet.hpp
diff options
context:
space:
mode:
authorJiaqing Zhao <jiaqing.zhao@intel.com>2021-12-31 10:41:59 +0300
committerJiaqing Zhao <jiaqing.zhao@intel.com>2021-12-31 10:41:59 +0300
commit85ffe86a60f50ce9ad5728caf384a0dd0c8cc6a5 (patch)
treead847a4a2727a22f1cf7b63ca146570453d6f77e /redfish-core/lib/ethernet.hpp
parent638e239e85cdb906b9949758647fc16843415ba9 (diff)
downloadbmcweb-85ffe86a60f50ce9ad5728caf384a0dd0c8cc6a5.tar.xz
Fix variable naming for NIC IP entry
The variable niciPentry is really hard to understand at first glance, rename it to nicIpEntry. Tested: Build pass. Change-Id: Ie11efbb25e45c40435216fa10c094a0f190d0fe8 Signed-off-by: Jiaqing Zhao <jiaqing.zhao@intel.com>
Diffstat (limited to 'redfish-core/lib/ethernet.hpp')
-rw-r--r--redfish-core/lib/ethernet.hpp62
1 files changed, 31 insertions, 31 deletions
diff --git a/redfish-core/lib/ethernet.hpp b/redfish-core/lib/ethernet.hpp
index 79a1f501c8..b726eccf17 100644
--- a/redfish-core/lib/ethernet.hpp
+++ b/redfish-core/lib/ethernet.hpp
@@ -1365,7 +1365,7 @@ inline void handleIPv4StaticPatch(
// match it to the first JSON element in the IPv4StaticAddresses array.
// Match each subsequent JSON element to the next static IP programmed
// into the NIC.
- boost::container::flat_set<IPv4AddressData>::const_iterator niciPentry =
+ boost::container::flat_set<IPv4AddressData>::const_iterator nicIpEntry =
getNextStaticIpEntry(ipv4Data.cbegin(), ipv4Data.cend());
for (nlohmann::json& thisJson : input)
@@ -1412,9 +1412,9 @@ inline void handleIPv4StaticPatch(
errorInEntry = true;
}
}
- else if (niciPentry != ipv4Data.cend())
+ else if (nicIpEntry != ipv4Data.cend())
{
- addr = &(niciPentry->address);
+ addr = &(nicIpEntry->address);
}
else
{
@@ -1433,13 +1433,13 @@ inline void handleIPv4StaticPatch(
errorInEntry = true;
}
}
- else if (niciPentry != ipv4Data.cend())
+ else if (nicIpEntry != ipv4Data.cend())
{
- if (!ipv4VerifyIpAndGetBitcount(niciPentry->netmask,
+ if (!ipv4VerifyIpAndGetBitcount(nicIpEntry->netmask,
&prefixLength))
{
messages::propertyValueFormatError(
- asyncResp->res, niciPentry->netmask,
+ asyncResp->res, nicIpEntry->netmask,
pathString + "/SubnetMask");
errorInEntry = true;
}
@@ -1464,9 +1464,9 @@ inline void handleIPv4StaticPatch(
errorInEntry = true;
}
}
- else if (niciPentry != ipv4Data.cend())
+ else if (nicIpEntry != ipv4Data.cend())
{
- gw = &niciPentry->gateway;
+ gw = &nicIpEntry->gateway;
}
else
{
@@ -1480,12 +1480,12 @@ inline void handleIPv4StaticPatch(
return;
}
- if (niciPentry != ipv4Data.cend())
+ if (nicIpEntry != ipv4Data.cend())
{
- deleteAndCreateIPv4(ifaceId, niciPentry->id, prefixLength, *gw,
+ deleteAndCreateIPv4(ifaceId, nicIpEntry->id, prefixLength, *gw,
*addr, asyncResp);
- niciPentry =
- getNextStaticIpEntry(++niciPentry, ipv4Data.cend());
+ nicIpEntry =
+ getNextStaticIpEntry(++nicIpEntry, ipv4Data.cend());
}
else
{
@@ -1496,7 +1496,7 @@ inline void handleIPv4StaticPatch(
}
else
{
- if (niciPentry == ipv4Data.cend())
+ if (nicIpEntry == ipv4Data.cend())
{
// Requesting a DELETE/DO NOT MODIFY action for an item
// that isn't present on the eth(n) interface. Input JSON is
@@ -1516,12 +1516,12 @@ inline void handleIPv4StaticPatch(
if (thisJson.is_null())
{
- deleteIPv4(ifaceId, niciPentry->id, asyncResp);
+ deleteIPv4(ifaceId, nicIpEntry->id, asyncResp);
}
- if (niciPentry != ipv4Data.cend())
+ if (nicIpEntry != ipv4Data.cend())
{
- niciPentry =
- getNextStaticIpEntry(++niciPentry, ipv4Data.cend());
+ nicIpEntry =
+ getNextStaticIpEntry(++nicIpEntry, ipv4Data.cend());
}
entryIdx++;
}
@@ -1562,7 +1562,7 @@ inline void handleIPv6StaticAddressesPatch(
return;
}
size_t entryIdx = 1;
- boost::container::flat_set<IPv6AddressData>::const_iterator niciPentry =
+ boost::container::flat_set<IPv6AddressData>::const_iterator nicIpEntry =
getNextStaticIpEntry(ipv6Data.cbegin(), ipv6Data.cend());
for (const nlohmann::json& thisJson : input)
{
@@ -1596,9 +1596,9 @@ inline void handleIPv6StaticAddressesPatch(
{
addr = &(*address);
}
- else if (niciPentry != ipv6Data.end())
+ else if (nicIpEntry != ipv6Data.end())
{
- addr = &(niciPentry->address);
+ addr = &(nicIpEntry->address);
}
else
{
@@ -1611,9 +1611,9 @@ inline void handleIPv6StaticAddressesPatch(
{
prefix = *prefixLength;
}
- else if (niciPentry != ipv6Data.end())
+ else if (nicIpEntry != ipv6Data.end())
{
- prefix = niciPentry->prefixLength;
+ prefix = nicIpEntry->prefixLength;
}
else
{
@@ -1622,12 +1622,12 @@ inline void handleIPv6StaticAddressesPatch(
return;
}
- if (niciPentry != ipv6Data.end())
+ if (nicIpEntry != ipv6Data.end())
{
- deleteAndCreateIPv6(ifaceId, niciPentry->id, prefix, *addr,
+ deleteAndCreateIPv6(ifaceId, nicIpEntry->id, prefix, *addr,
asyncResp);
- niciPentry =
- getNextStaticIpEntry(++niciPentry, ipv6Data.cend());
+ nicIpEntry =
+ getNextStaticIpEntry(++nicIpEntry, ipv6Data.cend());
}
else
{
@@ -1637,7 +1637,7 @@ inline void handleIPv6StaticAddressesPatch(
}
else
{
- if (niciPentry == ipv6Data.end())
+ if (nicIpEntry == ipv6Data.end())
{
// Requesting a DELETE/DO NOT MODIFY action for an item
// that isn't present on the eth(n) interface. Input JSON is
@@ -1657,12 +1657,12 @@ inline void handleIPv6StaticAddressesPatch(
if (thisJson.is_null())
{
- deleteIPv6(ifaceId, niciPentry->id, asyncResp);
+ deleteIPv6(ifaceId, nicIpEntry->id, asyncResp);
}
- if (niciPentry != ipv6Data.cend())
+ if (nicIpEntry != ipv6Data.cend())
{
- niciPentry =
- getNextStaticIpEntry(++niciPentry, ipv6Data.cend());
+ nicIpEntry =
+ getNextStaticIpEntry(++nicIpEntry, ipv6Data.cend());
}
entryIdx++;
}