Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Kea
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
415
Issues
415
List
Boards
Labels
Service Desk
Milestones
Merge Requests
65
Merge Requests
65
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
ISC Open Source Projects
Kea
Commits
e76ef58c
Commit
e76ef58c
authored
May 19, 2014
by
Marcin Siodelski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[3268] Fixed a couple of typos during a review.
parent
83cbea18
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
src/bin/d2/d2_cfg_mgr.h
src/bin/d2/d2_cfg_mgr.h
+2
-2
src/bin/d2/d2_config.cc
src/bin/d2/d2_config.cc
+2
-2
src/bin/d2/d2_process.cc
src/bin/d2/d2_process.cc
+2
-2
src/bin/d2/tests/d2_cfg_mgr_unittests.cc
src/bin/d2/tests/d2_cfg_mgr_unittests.cc
+1
-1
No files found.
src/bin/d2/d2_cfg_mgr.h
View file @
e76ef58c
...
...
@@ -53,7 +53,7 @@ public:
return
(
DCfgContextBasePtr
(
new
D2CfgContext
(
*
this
)));
}
/// @brief Fetches a reference to the D2
p
arams
/// @brief Fetches a reference to the D2
P
arams
D2ParamsPtr
&
getD2Params
()
{
return
(
d2_params_
);
}
...
...
@@ -243,7 +243,7 @@ protected:
///
/// Iterates over the set of parameters, creating a parser based on the
/// parameter's id and then invoking its build method passing in the
/// paramter's configuration value.
/// param
e
ter's configuration value.
///
/// @param params_config set of scalar configuration elements to parse
virtual
void
buildParams
(
isc
::
data
::
ConstElementPtr
params_config
);
...
...
src/bin/d2/d2_config.cc
View file @
e76ef58c
...
...
@@ -38,8 +38,8 @@ const char *D2Params::DFT_NCR_FORMAT = "JSON";
D2Params
::
D2Params
(
const
isc
::
asiolink
::
IOAddress
&
ip_address
,
const
size_t
port
,
const
size_t
dns_server_timeout
,
const
dhcp_ddns
::
NameChangeProtocol
&
ncr_protocol
,
const
dhcp_ddns
::
NameChangeFormat
&
ncr_format
)
const
dhcp_ddns
::
NameChangeProtocol
&
ncr_protocol
,
const
dhcp_ddns
::
NameChangeFormat
&
ncr_format
)
:
ip_address_
(
ip_address
),
port_
(
port
),
dns_server_timeout_
(
dns_server_timeout
),
...
...
src/bin/d2/d2_process.cc
View file @
e76ef58c
// Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2013
-2014
Internet Systems Consortium, Inc. ("ISC")
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
...
...
@@ -207,7 +207,7 @@ D2Process::configure(isc::data::ConstElementPtr config_set) {
if
(
rcode
)
{
// Non-zero means we got an invalid configuration, take no further
// action.
In integrated mode, this will send a failed response back
// action. In integrated mode, this will send a failed response back
// to BIND10.
reconf_queue_flag_
=
false
;
return
(
answer
);
...
...
src/bin/d2/tests/d2_cfg_mgr_unittests.cc
View file @
e76ef58c
...
...
@@ -39,7 +39,7 @@ class D2CfgMgrTest : public ConfigParseTest {
public:
/// @brief Constructor
D2CfgMgrTest
()
:
cfg_mgr_
(
new
D2CfgMgr
),
d2_params_
()
{
D2CfgMgrTest
()
:
cfg_mgr_
(
new
D2CfgMgr
()
),
d2_params_
()
{
}
/// @brief Destructor
...
...
Write
Preview
Markdown
is supported
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