# Minimum value: 0, maximum value: 10000, default value: 50.
# This tag requires that the tag HAVE_DOT is set to YES.
-DOT_GRAPH_MAX_NODES = 200
+DOT_GRAPH_MAX_NODES = 400
# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
# generated by dot. A depth value of 3 means that only nodes reachable from the
/// \brief Receive DHCPv4 packet from interface.
///
/// \param timeout_sec number of seconds for waiting for a packet,
- /// \param timeout_sec number of microseconds for waiting for a packet,
+ /// \param timeout_usec number of microseconds for waiting for a packet,
/// \return received packet or nullptr if timed out
virtual dhcp::Pkt4Ptr receive4(uint32_t timeout_sec, uint32_t timeout_usec) override;
/// \brief Receive DHCPv6 packet from interface.
///
/// \param timeout_sec number of seconds for waiting for a packet,
- /// \param timeout_sec number of microseconds for waiting for a packet,
+ /// \param timeout_usec number of microseconds for waiting for a packet,
/// \return received packet or nullptr if timed out
virtual dhcp::Pkt6Ptr receive6(uint32_t timeout_sec, uint32_t timeout_usec) override;
/// Function returns name of the specified exchange type.
/// This function is mainly for logging purposes.
///
+/// \param os output stream to use.
/// \param xchg_type exchange type.
/// \return string representing name of the exchange.
std::ostream& operator<<(std::ostream& os, ExchangeType xchg_type);
/// \brief Test Control class.
///
/// This class is used to run the performance test with
-/// with \ref TestControl::run function. This function can be executed
+/// with \ref TestControl::runWrapped function. This function can be executed
/// multiple times if desired because it resets TestControl's internal
-/// state every time it is executed. Prior to running \ref TestControl::run,
+/// state every time it is executed. Prior to running \ref TestControl::runWrapped,
/// one must make sure to parse command line options by calling
/// \ref CommandOptions::parse. Failing to do this will result in an exception.
///
///
/// @param cfg_def set of of user-defined option definitions to use
/// when creating option instances.
- /// @param option configurations to merge with.
+ /// @param cfg_def option definitions to reference when merging
+ /// @param other option configuration to merge in.
void merge(CfgOptionDefPtr cfg_def, CfgOption& other);
/// @brief Re-create the option in each descriptor based on given definitions
///
/// Iterator over the definitions in each name space in this configuration:
/// If either the definition's name or code are defined in @c other
- /// then skip over the definition otherwise add it to @other.
+ /// then skip over the definition otherwise add it to @c other.
///
/// Replace this configuration's definitions with the definitions
/// in @c other using @c copyTo().
///
+ /// @param other option definitions to merge in.
+ ///
/// @warning The merge operation affects @c other.
/// Therefore, the caller must not rely on the data held in the @c other
/// object after the call to @c merge. Also, the data held in @c other must
/// should be called on the parent network instance (typically on
/// @c SharedNetwork4 or @c SharedNetwork6) to fetch the parent specific
/// value if the value is unspecified for this instance.
+ /// @param property the value to return when inheritance mode is NONE, or
+ /// when the mode is PARENT_NETWORK and the property has not been specified
+ /// by a parent network.
/// @param inheritance inheritance mode to be used.
///
/// @return Option pointer fetched from this instance level or parent
/// - rebind-timer,
/// - valid-lifetime
///
- /// @param shared_network_data Data element holding shared network
+ /// @param network_data Data element holding shared network
/// configuration to be parsed.
/// @param [out] network Pointer to a network in which parsed data is
/// to be stored.
///
/// \brief A standard DNS module exception that is thrown if the name parser
-/// fails to decode a "\"-escaped sequence.
+/// fails to decode a back-slash escaped sequence.
///
class BadEscape : public NameParserException {
public:
/// @return Pointer to the created binding.
static MySqlBindingPtr createFloat(const float value);
- /// @Conditionally creates binding of float type for sending data if
+ /// @brief Conditionally creates binding of float type for sending data if
/// provided value is specified.
///
/// @tparam T Floating point type to be converted to float.
/// If the collection of audit entries is empty, this method simply
/// returns without updating the timestamp.
///
- /// @param Reference to the collection of the fetched audit entries.
+ /// @param audit_entries reference to the collection of the fetched audit entries.
void updateLastAuditEntryTime(const db::AuditEntryCollection& audit_entries) {
// Do nothing if there are no audit entries. It is the case if
// there were no updates to the configuration.
/// buffer to trim
/// \param end - Forward iterator pointing to the untrimmed end of
/// the buffer to trim
-/// \param val - byte value to trim off
+/// \param trim_val - byte value to trim off
///
-/// \retrun Iterator pointing the first character from the end of the
+/// \return Iterator pointing the first character from the end of the
/// buffer not equal to the trim value
template<typename Iterator>
Iterator
}
ElementPtr
-TranslatorBasic::value(S_Val s_val) {
+
+#ifndef HAVE_PRE_0_7_6_SYSREPO
+ TranslatorBasic::value(sysrepo::S_Val s_val) {
+#else
+ TranslatorBasic::value(S_Val s_val) {
+#endif
if (!s_val) {
isc_throw(BadValue, "value called with null");
}