Skip to content
GitLab
Menu
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
f2b0b4fd
Commit
f2b0b4fd
authored
Jul 18, 2012
by
JINMEI Tatuya
Browse files
[2094] (unrelated fix) NSEC's next name shouldn't be compressed per RFC3597.
parent
7e156191
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/dns/rdata/generic/nsec_47.cc
View file @
f2b0b4fd
...
...
@@ -124,7 +124,9 @@ NSEC::toWire(OutputBuffer& buffer) const {
void
NSEC
::
toWire
(
AbstractMessageRenderer
&
renderer
)
const
{
impl_
->
nextname_
.
toWire
(
renderer
);
// Type NSEC is not "well-known", and name compression must be disabled
// per RFC3597.
renderer
.
writeName
(
impl_
->
nextname_
,
false
);
renderer
.
writeData
(
&
impl_
->
typebits_
[
0
],
impl_
->
typebits_
.
size
());
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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