Browse Source

[3035] Resolved doxygen errors caused by recent changes.

Marcin Siodelski 11 years ago
parent
commit
ee550617af
2 changed files with 6 additions and 5 deletions
  1. 2 1
      src/bin/dhcp4/dhcp4_srv.h
  2. 4 4
      src/lib/dhcp_ddns/ncr_msg.h

+ 2 - 1
src/bin/dhcp4/dhcp4_srv.h

@@ -341,7 +341,8 @@ protected:
     /// is exception free.
     ///
     /// @param chg_type A type of the NameChangeRequest (ADD or REMOVE).
-    /// @param ncr An isc::dhcp_ddns::NameChangeRequest object being added.
+    /// @param lease A lease for which the NameChangeRequest is created and
+    /// queued.
     void queueNameChangeRequest(const isc::dhcp_ddns::NameChangeType chg_type,
                                 const Lease4Ptr& lease);
 

+ 4 - 4
src/lib/dhcp_ddns/ncr_msg.h

@@ -91,8 +91,8 @@ public:
     /// @brief Constructor, creates an instance of the @c D2Dhcid from the
     /// HW address.
     ///
-    /// @param A pointer to the object encapsulating HW address.
-    /// @param A on-wire canonical representation of the FQDN.
+    /// @param hwaddr A pointer to the object encapsulating HW address.
+    /// @param wire_fqdn A on-wire canonical representation of the FQDN.
     D2Dhcid(const isc::dhcp::HWAddrPtr& hwaddr,
             const std::vector<uint8_t>& wire_fqdn);
 
@@ -147,8 +147,8 @@ public:
 
     /// @brief Sets the DHCID value based on the HW address and FQDN.
     ///
-    /// @param A pointer to the object encapsulating HW address.
-    /// @param A on-wire canonical representation of the FQDN.
+    /// @param hwaddr A pointer to the object encapsulating HW address.
+    /// @param wire_fqdn A on-wire canonical representation of the FQDN.
     void fromHWAddr(const isc::dhcp::HWAddrPtr& hwaddr,
                     const std::vector<uint8_t>& wire_fqdn);