]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2318] Minor changes in comments, suggested in the code review.
authorMarcin Siodelski <marcin@isc.org>
Tue, 30 Oct 2012 11:35:19 +0000 (12:35 +0100)
committerMarcin Siodelski <marcin@isc.org>
Tue, 30 Oct 2012 11:35:19 +0000 (12:35 +0100)
src/bin/dhcp6/config_parser.cc
src/bin/dhcp6/dhcp6.dox

index bbbcfb112dbbf2a1d006340a47b7a417d9fcd3ef..24764974fe685529c9837af1693d64f7df0afc5a 100644 (file)
@@ -142,6 +142,9 @@ protected:
 ///
 /// For overview of usability of this generic purpose parser, see
 /// \ref dhcpv6-config-inherit page.
+///
+/// @todo this class should be turned into the template class which
+/// will handle all uintX_types of data (see ticket #2415).
 class Uint32Parser : public DhcpConfigParser {
 public:
 
@@ -484,6 +487,12 @@ protected:
 /// and data carried by the option. If parsing is successful than
 /// instance of an option is created and added to the storage provided
 /// by the calling class.
+///
+/// @todo This class parses and validates option name. However it is
+/// not used anywhere util support for option spaces is implemented
+/// (see tickets #2319, #2314). When option spaces are implemented
+/// there will be a way to reference the particular option using
+/// its type (code) or option name.
 class OptionDataParser : public DhcpConfigParser {
 public:
 
index fe842de44b571a762ce42d6f028ad4552706a6e8..6856affe9e07f4b2c83ba42872be3739a48fae87 100644 (file)
@@ -76,4 +76,6 @@
  simple as possible. In fact, currently the code has to call Subnet6->getT1() and
  do not implement any fancy inheritance logic.
 
+ @todo Add section about setting up options and their definitions with bindctl.
+
  */