Changeset 79868 in vbox
- Timestamp:
- Jul 18, 2019 8:36:10 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 132266
- Location:
- trunk/src/VBox/NetworkServices/Dhcpd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/Dhcpd/Config.cpp
r79865 r79868 896 896 * Internal worker for parsing the elements under /DHCPServer/Options/. 897 897 * 898 * @param pElmOptions The <Options> element.898 * @param pElmOptions The \<Options\> element. 899 899 * @param fStrict Set if we're in strict mode, clear if we just 900 900 * want to get on with it if we can. -
trunk/src/VBox/NetworkServices/Dhcpd/Config.h
r79865 r79868 72 72 { } 73 73 74 virtual void initFromXml(xml::ElementNode const *pElm , bool fStrict, Config const *pConfig);74 virtual void initFromXml(xml::ElementNode const *pElmConfig, bool fStrict, Config const *pConfig); 75 75 virtual const char *getType() const RT_NOEXCEPT = 0; 76 76 virtual const char *getName() const RT_NOEXCEPT = 0; … … 119 119 : ConfigLevelBase() 120 120 { } 121 void initFromXml(xml::ElementNode const *pElm , bool fStrict, Config const *pConfig) RT_OVERRIDE;121 void initFromXml(xml::ElementNode const *pElmOptions, bool fStrict, Config const *pConfig) RT_OVERRIDE; 122 122 const char *getType() const RT_NOEXCEPT RT_OVERRIDE { return "global"; } 123 123 const char *getName() const RT_NOEXCEPT RT_OVERRIDE { return "GlobalConfig"; } … … 227 227 } 228 228 229 void initFromXml(xml::ElementNode const *pElm , bool fStrict, Config const *pConfig) RT_OVERRIDE;229 void initFromXml(xml::ElementNode const *pElmGroup, bool fStrict, Config const *pConfig) RT_OVERRIDE; 230 230 bool match(const ClientId &a_ridClient, const OptVendorClassId &a_ridVendorClass, const OptUserClassId &a_ridUserClass) const; 231 231 … … 268 268 } 269 269 270 void initFromXml(xml::ElementNode const *pElm , bool fStrict, Config const *pConfig) RT_OVERRIDE;270 void initFromXml(xml::ElementNode const *pElmConfig, bool fStrict, Config const *pConfig) RT_OVERRIDE; 271 271 const char *getType() const RT_NOEXCEPT RT_OVERRIDE { return "host"; } 272 272 const char *getName() const RT_NOEXCEPT RT_OVERRIDE { return m_strName.c_str(); }
Note:
See TracChangeset
for help on using the changeset viewer.