Browse Source

[5122] Added a comment explaining (where) client-class code was moved

Francis Dupont 8 years ago
parent
commit
8acb679084
2 changed files with 4 additions and 0 deletions
  1. 2 0
      src/bin/dhcp4/json_config_parser.cc
  2. 2 0
      src/bin/dhcp6/json_config_parser.cc

+ 2 - 0
src/bin/dhcp4/json_config_parser.cc

@@ -259,6 +259,8 @@ protected:
             subnet4->get4o6().setInterfaceId(opt);
             subnet4->get4o6().enabled(true);
         }
+
+        // client-class processing is now generic so in DhcpConfigParser
     }
 };
 

+ 2 - 0
src/bin/dhcp6/json_config_parser.cc

@@ -432,6 +432,8 @@ protected:
         // Enable or disable Rapid Commit option support for the subnet.
         subnet6->setRapidCommit(rapid_commit);
 
+        // client-class processing is now generic so in DhcpConfigParser
+
         subnet_.reset(subnet6);
     }