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
416
Issues
416
List
Boards
Labels
Service Desk
Milestones
Merge Requests
66
Merge Requests
66
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
3de7cf28
Commit
3de7cf28
authored
May 19, 2014
by
Tomek Mrugalski
🛰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[3400] Daemon::init is now void method.
parent
3ff28cb7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
src/bin/dhcp6/bundy_controller.cc
src/bin/dhcp6/bundy_controller.cc
+2
-2
src/lib/dhcpsrv/daemon.cc
src/lib/dhcpsrv/daemon.cc
+0
-1
No files found.
src/bin/dhcp6/bundy_controller.cc
View file @
3de7cf28
...
...
@@ -132,7 +132,7 @@ bundyConfigHandler(ConstElementPtr new_config) {
return
(
ControlledDhcpv6Srv
::
processConfig
(
merged_config
));
}
bool
void
ControlledDhcpv6Srv
::
init
(
const
std
::
string
&
/* config_file*/
)
{
// This is Bundy configuration backed. It established control session
// that is used to connect to Bundy framework.
...
...
@@ -195,7 +195,7 @@ ControlledDhcpv6Srv::init(const std::string& /* config_file*/) {
.
arg
(
ctrl_socket
);
IfaceMgr
::
instance
().
addExternalSocket
(
ctrl_socket
,
sessionReader
);
return
(
true
)
;
return
;
}
void
ControlledDhcpv6Srv
::
cleanup
()
{
...
...
src/lib/dhcpsrv/daemon.cc
View file @
3de7cf28
...
...
@@ -28,7 +28,6 @@ Daemon::Daemon() {
}
void
Daemon
::
init
(
const
std
::
string
&
)
{
return
false
;
}
void
Daemon
::
cleanup
()
{
...
...
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