Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sebastian Schrader
Kea
Commits
5d8cf0e3
Commit
5d8cf0e3
authored
Apr 24, 2017
by
Tomek Mrugalski
🛰
Browse files
[5208a] unused parameter warnings removed
parent
313d980e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/dhcpsrv/cfg_hosts.cc
View file @
5d8cf0e3
...
@@ -689,25 +689,27 @@ CfgHosts::add6(const HostPtr& host) {
...
@@ -689,25 +689,27 @@ CfgHosts::add6(const HostPtr& host) {
}
}
bool
bool
CfgHosts
::
del
(
const
SubnetID
&
subnet_id
,
const
asiolink
::
IOAddress
&
addr
)
{
CfgHosts
::
del
(
const
SubnetID
&
/*
subnet_id
*/
,
const
asiolink
::
IOAddress
&
/*
addr
*/
)
{
/// @todo: Implement host removal
/// @todo: Implement host removal
isc_throw
(
NotImplemented
,
"sorry, not implemented"
);
isc_throw
(
NotImplemented
,
"sorry, not implemented"
);
return
(
false
);
return
(
false
);
}
}
bool
bool
CfgHosts
::
del4
(
const
SubnetID
&
subnet_id
,
CfgHosts
::
del4
(
const
SubnetID
&
/*subnet_id*/
,
const
Host
::
IdentifierType
&
identifier_type
,
const
Host
::
IdentifierType
&
/*identifier_type*/
,
const
uint8_t
*
identifier_begin
,
const
size_t
identifier_len
)
{
const
uint8_t
*
/*identifier_begin*/
,
const
size_t
/*identifier_len*/
)
{
/// @todo: Implement host removal
/// @todo: Implement host removal
isc_throw
(
NotImplemented
,
"sorry, not implemented"
);
isc_throw
(
NotImplemented
,
"sorry, not implemented"
);
return
(
false
);
return
(
false
);
}
}
bool
bool
CfgHosts
::
del6
(
const
SubnetID
&
subnet_id
,
CfgHosts
::
del6
(
const
SubnetID
&
/*subnet_id*/
,
const
Host
::
IdentifierType
&
identifier_type
,
const
Host
::
IdentifierType
&
/*identifier_type*/
,
const
uint8_t
*
identifier_begin
,
const
size_t
identifier_len
)
{
const
uint8_t
*
/*identifier_begin*/
,
const
size_t
/*identifier_len*/
)
{
/// @todo: Implement host removal
/// @todo: Implement host removal
isc_throw
(
NotImplemented
,
"sorry, not implemented"
);
isc_throw
(
NotImplemented
,
"sorry, not implemented"
);
return
(
false
);
return
(
false
);
...
...
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