Changeset 98027 in vbox for trunk/src/VBox/NetworkServices/Dhcpd
- Timestamp:
- Jan 6, 2023 9:46:23 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/Dhcpd/IPv4Pool.h
r98026 r98027 135 135 136 136 /** 137 * Checks if the pool range includes @a a ddr (allocation status not considered).137 * Checks if the pool range includes @a a_Addr (allocation status not considered). 138 138 */ 139 bool contains(RTNETADDRIPV4 a ddr) const RT_NOEXCEPT139 bool contains(RTNETADDRIPV4 a_Addr) const RT_NOEXCEPT 140 140 { 141 return m_range.contains(a ddr);141 return m_range.contains(a_Addr); 142 142 } 143 143
Note:
See TracChangeset
for help on using the changeset viewer.