]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[master] Some trivial doxygen fixes 448-update-cb-cmds-to-handle-parameter-types_base 453-update-makefile-using-bison_base
authorFrancis Dupont <fdupont@isc.org>
Tue, 5 Feb 2019 23:29:53 +0000 (00:29 +0100)
committerFrancis Dupont <fdupont@isc.org>
Tue, 5 Feb 2019 23:29:53 +0000 (00:29 +0100)
src/bin/dhcp4/json_config_parser.h
src/lib/dhcpsrv/config_backend_dhcp4.h
src/lib/dhcpsrv/srv_config.h
src/lib/eval/token.h
src/lib/mysql/mysql_binding.cc

index 8202d3f0b93e9351276c4f167a64e55ec66c951c..5b1de6b88903d0332b270a8c52ec5220e324a3df 100644 (file)
@@ -60,7 +60,7 @@ configureDhcp4Server(Dhcpv4Srv&,
                      isc::data::ConstElementPtr config_set,
                      bool check_only = false);
 
-/// @param Fetch and merge data from config backends into the staging config
+/// @brief Fetch and merge data from config backends into the staging config
 ///
 /// If the given SrvConfig specifies one or more config backends it calls
 /// @c databaseConfigConnect() to open connections to them, otherwise it
index 8e25920cac7a09521e48a26619700e7f9896f05f..9b0b3d49a40621eee78a6a754a94883e1ff6a9c2 100644 (file)
@@ -186,7 +186,7 @@ public:
 
     /// @brief Retrieves the most recent audit entries.
     ///
-    /// @param selector Server selector.
+    /// @param server_selector Server selector.
     /// @param modification_time Timestamp being a lower limit for the returned
     /// result set, i.e. entries later than specified time are returned.
     /// @return Collection of audit entries.
index c30e1304fd5e7696798e1a18b23ddebfd759384b..04a9966080754c18175abc5bc2016f2ca15d7671 100644 (file)
@@ -460,7 +460,7 @@ public:
         return (equals(other));
     }
 
-    /// @param other An object to be compared with this object.
+    /// @brief other An object to be compared with this object.
     ///
     /// It ignores the configuration sequence number when checking for
     /// inequality of objects.
index 2978cdc53bd7b756c616d1a391812bc70e689cc1..d3559fd21b85b75f8879188deafc3840d16fd50f 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2015-2018 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2015-2019 Internet Systems Consortium, Inc. ("ISC")
 //
 // This Source Code Form is subject to the terms of the Mozilla Public
 // License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -233,7 +233,6 @@ public:
     };
 
     /// @brief Constructor that takes an option code as a parameter
-    /// @param option_code code of the option
     ///
     /// Note: There is no constructor that takes option_name, as it would
     /// introduce complex dependency of the libkea-eval on libdhcpsrv.
index 75b5174d3f7873fa20e0578ce1d7fdc0148028cd..ff23a290c3326ac5801a5736876dd4b98f5bea0f 100644 (file)
@@ -106,7 +106,7 @@ MySqlBinding::createBlob(const unsigned long length) {
 }
 
 MySqlBindingPtr
-MySqlBinding::createTimestamp(const ptime& timestamp) {
+MySqlBinding::createTimestamp(const boost::posix_time::ptime& timestamp) {
     MySqlBindingPtr binding(new MySqlBinding(MySqlBindingTraits<ptime>::column_type,
                                    MySqlBindingTraits<ptime>::length));
     binding->setTimestampValue(timestamp);
@@ -146,7 +146,7 @@ MySqlBinding::convertToDatabaseTime(const time_t input_time,
 }
 
 void
-MySqlBinding::convertToDatabaseTime(const ptime& input_time,
+MySqlBinding::convertToDatabaseTime(const boost::posix_time::ptime& input_time,
                                     MYSQL_TIME& output_time) {
     if (input_time.is_not_a_date_time()) {
         isc_throw(BadValue, "Time value is not a valid posix time");