]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2315] Fixed issues in doxygen documentation.
authorMarcin Siodelski <marcin@isc.org>
Fri, 4 Jan 2013 09:50:07 +0000 (10:50 +0100)
committerMarcin Siodelski <marcin@isc.org>
Fri, 4 Jan 2013 09:50:07 +0000 (10:50 +0100)
src/lib/dhcp/option_definition.h
src/lib/dhcpsrv/cfgmgr.h
src/lib/dhcpsrv/subnet.h

index c9ffedfa8e5c5924a0df83d60c47a83751f89cea..3a76e150f03b277b094f932daa490ee5410c8454 100644 (file)
@@ -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.
index 87e3ad60dd127f23b14a95c0bc60059ba2b4df11..5cf40e0d7db7038b72dc29ed253dd4276ad977a7 100644 (file)
@@ -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.
index 2941c0172b0e8631e964ae8fc81644199c6b442d..4cdcf11154fc720e118006db4477b302cad94c55 100644 (file)
@@ -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.