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
/// @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.
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.
-// 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
};
/// @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.
}
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);
}
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");