]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[1651] Moved comment from establishSession() header to its implementation
authorStephen Morris <stephen@isc.org>
Thu, 14 Jun 2012 09:58:22 +0000 (10:58 +0100)
committerStephen Morris <stephen@isc.org>
Thu, 14 Jun 2012 09:58:22 +0000 (10:58 +0100)
src/bin/dhcp4/ctrl_dhcp4_srv.cc
src/bin/dhcp4/ctrl_dhcp4_srv.h

index 048883f1a0b35f78a3e8361825a455372c78a951..b0526830f81424c49bee9ab4bc93bc321cb76dbd 100644 (file)
@@ -102,10 +102,12 @@ void ControlledDhcpv4Srv::establishSession() {
                                           dhcp4CommandHandler, false);
     config_session_->start();
 
+    /// Integrate the asynchronous I/O model of BIND 10 configuration
+    /// control with the "select" model of the DHCP server.  This is
+    /// fully explained in \ref dhcpv4Session.
     int ctrl_socket = cc_session_->getSocketDesc();
     cout << "b10-dhcp4: Control session started, socket="
          << ctrl_socket << endl;
-
     IfaceMgr::instance().set_session_socket(ctrl_socket, sessionReader);
 }
 
index 08bf61d6ec7d15d636a9b46aaed37a974bca0c78..688b1db521e03f3ccf15c6f6e6c0b9a186a5b5d1 100644 (file)
@@ -50,10 +50,6 @@ public:
     ///
     /// Creates session that will be used to receive commands and updated
     /// configuration from boss (or indirectly from user via bindctl).
-    ///
-    /// Integrate the asynchronous I/O model of BIND 10 configuration
-    /// control with the "select" model of the DHCP server.  This is
-    /// fully explained in \ref dhcpv4Session.
     void establishSession();
 
     /// @brief Terminates existing msgq session.