From: Francis Dupont Date: Fri, 11 Dec 2015 14:50:55 +0000 (+0100) Subject: [4234] doxygen cleanup second pass X-Git-Tag: trac4263_base~6^2~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=043a304c72fcab34ea776ab1190348776f92d1b4;p=thirdparty%2Fkea.git [4234] doxygen cleanup second pass --- diff --git a/src/bin/dhcp4/dhcp4_srv.h b/src/bin/dhcp4/dhcp4_srv.h index a3e28c7705..31cf2e17bc 100644 --- a/src/bin/dhcp4/dhcp4_srv.h +++ b/src/bin/dhcp4/dhcp4_srv.h @@ -425,7 +425,7 @@ protected: /// /// This method processes incoming DHCPDECLINE. In particular, it extracts /// Requested IP Address option, checks that the address really belongs to - /// the client and if it does, calls @ref declineLease. + /// the client and if it does, calls @ref declineLease(). /// /// @param decline message received from client void processDecline(Pkt4Ptr& decline); @@ -730,7 +730,7 @@ protected: /// /// @note This is done in two phases: first the content of the /// vendor-class-identifier option is used as a class, by - /// calling @ref classifyByVendor. Second classification match + /// calling @ref classifyByVendor(). Second classification match /// expressions are evaluated. The resulting classes will be stored /// in the packet (see @ref isc::dhcp::Pkt4::classes_ and /// @ref isc::dhcp::Pkt4::inClass). diff --git a/src/bin/dhcp6/dhcp6_srv.h b/src/bin/dhcp6/dhcp6_srv.h index c57e61da12..fdf77b31ce 100644 --- a/src/bin/dhcp6/dhcp6_srv.h +++ b/src/bin/dhcp6/dhcp6_srv.h @@ -623,7 +623,7 @@ protected: /// /// @note This is done in two phases: first the content of the /// vendor-class-identifier option is used as a class, by - /// calling @ref classifyByVendor. Second classification match + /// calling @ref classifyByVendor(). Second classification match /// expressions are evaluated. The resulting classes will be stored /// in the packet (see @ref isc::dhcp::Pkt6::classes_ and /// @ref isc::dhcp::Pkt6::inClass). diff --git a/src/lib/dhcpsrv/alloc_engine.h b/src/lib/dhcpsrv/alloc_engine.h index 421ac7b3fa..2ac5ecb9ce 100644 --- a/src/lib/dhcpsrv/alloc_engine.h +++ b/src/lib/dhcpsrv/alloc_engine.h @@ -397,7 +397,7 @@ public: /// response to SOLICIT). /// /// This method uses host reservation if ctx.host_ is set. The easy way to - /// set it is to call @ref isc::dhcp::AllocEngine::findReservation(ClientContext6& ctx). + /// set it is to call @ref isc::dhcp::AllocEngine::findReservation(ClientContext6& ctx) const. /// The host reservation is convenient, but incurs performance penalty, /// so it can be tweaked on a per subnet basis. There are three possible modes: /// 1. disabled (no host reservation at all). This is the most performant one diff --git a/src/lib/util/versioned_csv_file.h b/src/lib/util/versioned_csv_file.h index 74a6e56ce2..d4e9c56bef 100644 --- a/src/lib/util/versioned_csv_file.h +++ b/src/lib/util/versioned_csv_file.h @@ -88,8 +88,8 @@ typedef boost::shared_ptr VersionedColumnPtr; /// -# If there are fewer columns in the header than in the schema, the file /// is presumed to be an earlier schema version and will be upgraded as it is /// read. There is an ability to mark a specific column as being the minimum -/// column which must be present, see @ref VersionedCSVFile:: -/// setMinimumValidColumns(). If the header columns do not match up to this +/// column which must be present, see @ref VersionedCSVFile::setMinimumValidColumns(). +/// If the header columns do not match up to this /// minimum column, the file is presumed to be too old to upgrade and the /// open will fail. A valid, upgradable file will have an input schema /// state of VersionedCSVFile::NEEDS_UPGRADE.