Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
29a6cb5f
Commit
29a6cb5f
authored
Nov 01, 2012
by
Mukund Sivaraman
Browse files
[2371] Make minor comment updates
parent
213e3642
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/lib/dns/master_lexer.h
View file @
29a6cb5f
...
...
@@ -29,7 +29,7 @@ namespace dns {
///
/// The \c MasterLexer class provides tokenize interfaces for parsing DNS
/// master files. It understands some special rules of master files as
/// defined in RFC 1035, such as comments, character escaping,
or
multi-line
/// defined in RFC 1035, such as comments, character escaping,
and
multi-line
/// data, and provides the user application with the actual data in a
/// more convenient form such as a std::string object.
///
...
...
@@ -92,12 +92,12 @@ public:
/// \throw isc::InvalidOperation Called with no opened source.
void
close
();
/// \brief Return
a
name of the current input source name.
/// \brief Return
the
name of the current input source name.
///
/// If it's a file, it will be the C string given at the corresponding
/// \c open() call, that is, its file
name. If it's a stream, it will
/// be formatted as "stream-%p" where %p is hex representation
of the
/// address of the stream object.
/// \c open() call, that is, its filename. If it's a stream, it will
/// be formatted as
\c
"stream-%p" where
\c
%p is hex representation
///
of the
address of the stream object.
///
/// If there is no opened source at the time of the call, this method
/// returns an empty string.
...
...
src/lib/dns/tests/master_lexer_unittest.cc
View file @
29a6cb5f
...
...
@@ -90,7 +90,7 @@ TEST_F(MasterLexerTest, nestedOpen) {
lexer
.
open
(
TEST_DATA_SRCDIR
"/masterload.txt"
);
EXPECT_EQ
(
TEST_DATA_SRCDIR
"/masterload.txt"
,
lexer
.
getSourceName
());
// Close works on the "topmost" (opened
last
) source
// Close works on the "topmost" (
last-
opened) source
lexer
.
close
();
EXPECT_EQ
(
expected_stream_name
,
lexer
.
getSourceName
());
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment