From: Marcin Siodelski Date: Fri, 4 Jan 2013 09:50:07 +0000 (+0100) Subject: [2315] Fixed issues in doxygen documentation. X-Git-Tag: bind10-1.0.0-rc-release~95^2~25^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bf592d0607a639ff454dcdc820a76ae0eaacbbf4;p=thirdparty%2Fkea.git [2315] Fixed issues in doxygen documentation. --- diff --git a/src/lib/dhcp/option_definition.h b/src/lib/dhcp/option_definition.h index c9ffedfa8e..3a76e150f0 100644 --- a/src/lib/dhcp/option_definition.h +++ b/src/lib/dhcp/option_definition.h @@ -369,7 +369,7 @@ public: /// @brief Factory function to create option with array of integer values. /// - /// @param universe (V4 or V6). + /// @param u universe (V4 or V6). /// @param type option type. /// @param begin iterator pointing to the beginning of the buffer. /// @param end iterator pointing to the end of the buffer. diff --git a/src/lib/dhcpsrv/cfgmgr.h b/src/lib/dhcpsrv/cfgmgr.h index 87e3ad60dd..5cf40e0d7d 100644 --- a/src/lib/dhcpsrv/cfgmgr.h +++ b/src/lib/dhcpsrv/cfgmgr.h @@ -81,6 +81,7 @@ public: /// @brief Add new option definition. /// /// @param def option definition to be added. + /// @param option_space name of the option space to add definition to. /// /// @throw isc::dhcp::DuplicateOptionDefinition when the particular /// option definition already exists. diff --git a/src/lib/dhcpsrv/subnet.h b/src/lib/dhcpsrv/subnet.h index 2941c0172b..4cdcf11154 100644 --- a/src/lib/dhcpsrv/subnet.h +++ b/src/lib/dhcpsrv/subnet.h @@ -216,6 +216,7 @@ public: /// @param option option instance. /// @param persistent if true, send an option regardless if client /// requested it or not. + /// @param option_space name of the option space to add an option to. /// /// @throw isc::BadValue if invalid option provided. void addOption(OptionPtr& option, bool persistent, @@ -255,7 +256,7 @@ public: /// @brief Return a collection of option descriptors. /// - /// @param option_space name of the option space + /// @param option_space name of the option space. /// /// @return reference to collection of options configured for a subnet. /// The returned reference is valid as long as the Subnet object which @@ -265,6 +266,7 @@ public: /// @brief Return single option descriptor. /// /// @param option_space name of the option space. + /// @param option_code code of the option to be returned. /// /// @return option descriptor found for the specified option space /// and option code.