Changeset 75617 in vbox for trunk/src/VBox/NetworkServices/Dhcpd/Db.h
- Timestamp:
- Nov 20, 2018 11:59:31 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/Dhcpd/Db.h
r75614 r75617 51 51 Binding(const Binding &); 52 52 53 explicit Binding(RTNETADDRIPV4 addr Param)54 : m_addr(addr Param), m_state(FREE),53 explicit Binding(RTNETADDRIPV4 addr) 54 : m_addr(addr), m_state(FREE), 55 55 m_issued(), m_secLease() {} 56 56 57 Binding(RTNETADDRIPV4 addr Param, const ClientId &idParam)58 : m_addr(addr Param), m_state(FREE), m_id(idParam),57 Binding(RTNETADDRIPV4 addr, const ClientId &id) 58 : m_addr(addr), m_state(FREE), m_id(id), 59 59 m_issued(), m_secLease() {} 60 60 … … 70 70 TimeStamp issued() const { return m_issued; } 71 71 72 Binding &setState(State state Param)72 Binding &setState(State state) 73 73 { 74 m_state = state Param;74 m_state = state; 75 75 return *this; 76 76 } … … 85 85 } 86 86 87 Binding &giveTo(const ClientId &id Param)87 Binding &giveTo(const ClientId &id) 88 88 { 89 m_id = id Param;89 m_id = id; 90 90 m_state = FREE; 91 91 return *this;
Note:
See TracChangeset
for help on using the changeset viewer.