From: JINMEI Tatuya Date: Tue, 13 Nov 2012 18:15:48 +0000 (-0800) Subject: [2372] clarified that INITIAL_WS is recognized only after an EOL. X-Git-Tag: trac2487_base~1^2~21^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=30b659a84d2d1beedc9adc53fbfd2ff71587dea5;p=thirdparty%2Fkea.git [2372] clarified that INITIAL_WS is recognized only after an EOL. --- diff --git a/src/lib/dns/master_lexer.h b/src/lib/dns/master_lexer.h index 58b7a30a8d..0757df82a2 100644 --- a/src/lib/dns/master_lexer.h +++ b/src/lib/dns/master_lexer.h @@ -55,8 +55,9 @@ public: /// A compound option, indicating multiple options are set, can be /// specified using the logical OR operator (operator|()). enum Options { - NONE = 0, //< No option - INITIAL_WS = 1, ///< recognize begin-of-line spaces + NONE = 0, ///< No option + INITIAL_WS = 1, ///< recognize begin-of-line spaces after an + ///< end-of-line QSTRING = 2, ///< recognize quoted string NUMBER = 4 ///< recognize numeric text as integer }; @@ -191,7 +192,8 @@ public: enum Type { END_OF_LINE, ///< End of line detected (if asked for detecting it) END_OF_FILE, ///< End of file detected (if asked for detecting it) - INITIAL_WS, ///< White spaces at the beginning of a line + INITIAL_WS, ///< White spaces at the beginning of a line after an + ///< end of line NOVALUE_TYPE_MAX = INITIAL_WS, ///< Max integer corresponding to /// no-value (type only) types. /// Mainly for internal use.