]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[4234] doxygen cleanup second pass
authorFrancis Dupont <fdupont@isc.org>
Fri, 11 Dec 2015 14:50:55 +0000 (15:50 +0100)
committerFrancis Dupont <fdupont@isc.org>
Fri, 11 Dec 2015 14:50:55 +0000 (15:50 +0100)
src/bin/dhcp4/dhcp4_srv.h
src/bin/dhcp6/dhcp6_srv.h
src/lib/dhcpsrv/alloc_engine.h
src/lib/util/versioned_csv_file.h

index a3e28c77052b8c922c789f1df4301fe8c58e7969..31cf2e17bceacfca4a26c393ee27535dd144df7f 100644 (file)
@@ -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).
index c57e61da123280492b839a396d19bb40b6e4c999..fdf77b31cefbaf1f31b9743f2ed265192a74188b 100644 (file)
@@ -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).
index 421ac7b3fae0f342f1a0fbe0ddc66c269a8c0bfa..2ac5ecb9ce1b754cc205f2c483ce59171f1d235b 100644 (file)
@@ -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
index 74a6e56ce22496cb053df732e768e82e81bc19c2..d4e9c56bef6f4132fd65f3b9a3289c0c7b865bca 100644 (file)
@@ -88,8 +88,8 @@ typedef boost::shared_ptr<VersionedColumn> 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.