Browse Source

[4267] Addressed comments

Francis Dupont 9 years ago
parent
commit
d6acda356a
3 changed files with 7 additions and 7 deletions
  1. 1 1
      AUTHORS
  2. 3 3
      src/bin/dhcp4/dhcp4_srv.h
  3. 3 3
      src/bin/dhcp6/dhcp6_srv.h

+ 1 - 1
AUTHORS

@@ -88,7 +88,7 @@ We have received the following contributions:
 
  - Jinmei Tatuya
    2015-10: Pkt4o6 class improvements
-   2015-11: split Dhcpv4Srv::run() int run() and processPacket()
+   2015-11: split Dhcpv4Srv::run() into run() and processPacket()
 
  - Sebastien Couture, Ubity Inc
    2015-12: Fixes to MySQL schema creation

+ 3 - 3
src/bin/dhcp4/dhcp4_srv.h

@@ -208,15 +208,15 @@ public:
  
     /// @brief Main server processing loop.
     ///
-    /// Main server processing loop. Call the processing one routine
+    /// Main server processing loop. Call the processing step routine
     /// until shut down.
     ///
     /// @return true, if being shut down gracefully, never fail.
     bool run();
 
-    /// @brief Main server processing one.
+    /// @brief Main server processing step.
     ///
-    /// Main server processing one. Receives one incoming packet, calls
+    /// Main server processing step. Receives one incoming packet, calls
     /// the processing packet routing and (if necessary) transmits
     /// a response.
     void run_one();

+ 3 - 3
src/bin/dhcp6/dhcp6_srv.h

@@ -89,15 +89,15 @@ public:
 
     /// @brief Main server processing loop.
     ///
-    /// Main server processing loop. Call the processing one routine
+    /// Main server processing loop. Call the processing step routine
     /// until shut down.
     ///
     /// @return true, if being shut down gracefully, never fail.
     bool run();
 
-    /// @brief Main server processing one.
+    /// @brief Main server processing step.
     ///
-    /// Main server processing one. Receives one incoming packet, calls
+    /// Main server processing step. Receives one incoming packet, calls
     /// the processing packet routing and (if necessary) transmits
     /// a response.
     void run_one();