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
Sebastian Schrader
Kea
Commits
d5569a62
Commit
d5569a62
authored
Oct 15, 2012
by
Michal 'vorner' Vaner
Browse files
[2207] Implementation of the getZoneReloader
The concrete version for local table segment and reloader.
parent
b06d8d76
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/datasrc/memory/zone_table_segment_local.cc
View file @
d5569a62
...
...
@@ -13,6 +13,7 @@
// PERFORMANCE OF THIS SOFTWARE.
#include
<datasrc/memory/zone_table_segment_local.h>
#include
"zone_reloader.h"
using
namespace
isc
::
util
;
...
...
@@ -38,6 +39,14 @@ ZoneTableSegmentLocal::getMemorySegment() {
return
(
mem_sgmt_
);
}
ZoneReloader
*
ZoneTableSegmentLocal
::
getZoneReloader
(
const
LoadAction
&
load_action
,
const
dns
::
Name
&
name
,
const
dns
::
RRClass
&
rrclass
)
{
return
(
new
ZoneReloaderLocal
(
this
,
load_action
,
name
,
rrclass
));
}
}
// namespace memory
}
// namespace datasrc
}
// namespace isc
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