summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancis Dupont <fdupont@isc.org>2015-11-19 17:40:59 +0100
committerFrancis Dupont <fdupont@isc.org>2015-11-19 17:40:59 +0100
commit80b1ee66d20cdb422d1e08561637e7dbc5d73f87 (patch)
treef424795349138bcbd34ca672867d487e5c054676
parent[4096] Added unit test for an blank client class name (diff)
downloadkea-80b1ee66d20cdb422d1e08561637e7dbc5d73f87.tar.xz
kea-80b1ee66d20cdb422d1e08561637e7dbc5d73f87.zip
[4096] Removed @todo and changed Bison for Eval
-rw-r--r--src/lib/dhcpsrv/parsers/client_class_def_parser.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/dhcpsrv/parsers/client_class_def_parser.h b/src/lib/dhcpsrv/parsers/client_class_def_parser.h
index 55aa69e753..08ed582cb0 100644
--- a/src/lib/dhcpsrv/parsers/client_class_def_parser.h
+++ b/src/lib/dhcpsrv/parsers/client_class_def_parser.h
@@ -42,14 +42,14 @@
/// -# "name" - a string containing the name of the class
///
/// -# "test" - a string containing the logical expression used to determine
-/// membership in the class. @todo This is passed into the Bison parser.
+/// membership in the class. This is passed into the eval parser.
///
/// -# "option-data" - a list which defines the options that should be
/// assigned to memebers of the class. This element is optional and parsed
/// using the @ref dhcp::OptionDataListParser.
///
/// ExpressionParser - creates an eval::Expression from a string element,
-/// using the Bison Parser @todo.
+/// using the Eval Parser.
///
namespace isc {
namespace dhcp {
@@ -57,7 +57,7 @@ namespace dhcp {
/// @brief Parser for a logical expression
///
/// This parser creates an instance of an Expression from a string. The
-/// string is passed to the Bison Parser and the resultant Expression is
+/// string is passed to the Eval Parser and the resultant Expression is
/// stored into the ExpressionPtr reference passed into the constructor.
class ExpressionParser : public DhcpConfigParser {
public: