]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[master] Eliminate doxygen warnings after #4212 and #3696.
authorMarcin Siodelski <marcin@isc.org>
Thu, 24 Mar 2016 11:34:43 +0000 (12:34 +0100)
committerMarcin Siodelski <marcin@isc.org>
Thu, 24 Mar 2016 11:34:43 +0000 (12:34 +0100)
Committing on my discretion and with no objections on jabber.

src/lib/dhcpsrv/cfg_db_access.h
src/lib/dhcpsrv/mysql_host_data_source.cc

index f3efd864f553f3a6caf9e4195010ffe80b727807..77fda0d18a36b93278f22a81c630b129b79bba92 100644 (file)
@@ -59,7 +59,7 @@ public:
         host_db_access_ = host_db_access;
     }
 
-    /// @brief Creates instance of @ref LeaseMgr @ref HostDataSource
+    /// @brief Creates instance of lease manager and host data source
     /// according to the configuration specified.
     void createManagers() const;
 
index 104c0a3c2e0a6bd4c4e746a338c0e5ca00bb4d84..f9996c3237287bd30c3f6ed1cab4b137217398a3 100644 (file)
@@ -1070,7 +1070,7 @@ public:
     /// @param bind Vector of MYSQL_BIND objects to be used when making the
     /// query.
     ///
-    /// @htrow isc::dhcp::DuplicateEntry Database throws duplicate entry error
+    /// @throw isc::dhcp::DuplicateEntry Database throws duplicate entry error
     void addQuery(MySqlHostDataSource::StatementIndex stindex,
                   std::vector<MYSQL_BIND>& bind);
 
@@ -1103,11 +1103,12 @@ public:
     /// the 'hosts' table. The query may also use LEFT JOIN clause to
     /// retrieve information from other tables, e.g. ipv6_reservations.
     /// Whether IPv6 reservations are assigned to the @ref Host objects
-    /// depends on the type of the @ref exchange object.
+    /// depends on the type of the exchange object.
     ///
     /// @param stindex Statement index.
-    /// @param Vector of MySQL bindings.
-    /// @param Pointer to the exchange object used for the particular query.
+    /// @param bind Pointer to an array of MySQL bindings.
+    /// @param exchange Pointer to the exchange object used for the
+    /// particular query.
     /// @param [out] result Reference to the collection of hosts returned.
     /// @param single A boolean value indicating if a single host is
     /// expected to be returned, or multiple hosts.