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
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
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
Sebastian Schrader
Kea
Commits
0bfc13fa
Commit
0bfc13fa
authored
Dec 19, 2016
by
Marcin Siodelski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[5075] Addressed review comments and removed spurious += from Makefile.
parent
122afa7a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
5 deletions
+8
-5
src/bin/agent/ctrl_agent_cfg_mgr.h
src/bin/agent/ctrl_agent_cfg_mgr.h
+2
-1
src/bin/agent/ctrl_agent_process.cc
src/bin/agent/ctrl_agent_process.cc
+1
-0
src/bin/agent/kea-ctrl-agent.xml
src/bin/agent/kea-ctrl-agent.xml
+2
-2
src/bin/agent/tests/Makefile.am
src/bin/agent/tests/Makefile.am
+2
-2
src/bin/agent/tests/ctrl_agent_controller_unittests.cc
src/bin/agent/tests/ctrl_agent_controller_unittests.cc
+1
-0
No files found.
src/bin/agent/ctrl_agent_cfg_mgr.h
View file @
0bfc13fa
...
...
@@ -8,6 +8,7 @@
#define CTRL_AGENT_CFG_MGR_H
#include <process/d_cfg_mgr.h>
#include <boost/pointer_cast.hpp>
namespace
isc
{
namespace
agent
{
...
...
@@ -81,7 +82,7 @@ protected:
virtual
isc
::
dhcp
::
ParserPtr
createConfigParser
(
const
std
::
string
&
element_id
,
const
isc
::
data
::
Element
::
Position
&
pos
=
isc
::
data
::
Element
::
Position
());
=
isc
::
data
::
Element
::
ZERO_POSITION
());
/// @brief Creates a new, blank CtrlAgentCfgContext context.
///
...
...
src/bin/agent/ctrl_agent_process.cc
View file @
0bfc13fa
...
...
@@ -8,6 +8,7 @@
#include <agent/ctrl_agent_process.h>
#include <agent/ctrl_agent_log.h>
#include <cc/command_interpreter.h>
#include <boost/pointer_cast.hpp>
using
namespace
isc
::
process
;
...
...
src/bin/agent/kea-ctrl-agent.xml
View file @
0bfc13fa
...
...
@@ -2,7 +2,7 @@
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"
[<!ENTITY mdash "—">
]>
<!--
- Copyright (C) 201
3-2015
Internet Systems Consortium, Inc. ("ISC")
- Copyright (C) 201
6
Internet Systems Consortium, Inc. ("ISC")
-
- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
...
...
@@ -62,7 +62,7 @@
<para>
The
<command>
kea-ctrl-agent
</command>
provides a REST service for
controlling Kea services. The received HTTP requests are decapsulated
and forwarded to the respective Kea services
as JSON strings
. Received
and forwarded to the respective Kea services
in JSON format
. Received
JSON responses are encapsulated within HTTP responses and returned to
the controlling entity. Some commands may be handled by the Control
Agent directly, and not forwarded to any Kea service.
...
...
src/bin/agent/tests/Makefile.am
View file @
0bfc13fa
...
...
@@ -56,13 +56,13 @@ ctrl_agent_unittests_LDADD += $(top_builddir)/src/lib/process/libkea-process.la
ctrl_agent_unittests_LDADD
+=
$(top_builddir)
/src/lib/dhcpsrv/libkea-dhcpsrv.la
ctrl_agent_unittests_LDADD
+=
$(top_builddir)
/src/lib/eval/libkea-eval.la
ctrl_agent_unittests_LDADD
+=
$(top_builddir)
/src/lib/dhcp_ddns/libkea-dhcp_ddns.la
ctrl_agent_unittests_LDADD
+=
+
=
$(top_builddir)
/src/lib/stats/libkea-stats.la
ctrl_agent_unittests_LDADD
+=
$(top_builddir)
/src/lib/stats/libkea-stats.la
ctrl_agent_unittests_LDADD
+=
$(top_builddir)
/src/lib/config/libkea-cfgclient.la
ctrl_agent_unittests_LDADD
+=
$(top_builddir)
/src/lib/dhcp/libkea-dhcp++.la
ctrl_agent_unittests_LDADD
+=
$(top_builddir)
/src/lib/asiolink/libkea-asiolink.la
ctrl_agent_unittests_LDADD
+=
$(top_builddir)
/src/lib/cc/libkea-cc.la
ctrl_agent_unittests_LDADD
+=
$(top_builddir)
/src/lib/dns/libkea-dns++.la
ctrl_agent_unittests_LDADD
+=
+
=
$(top_builddir)
/src/lib/cryptolink/libkea-cryptolink.la
ctrl_agent_unittests_LDADD
+=
$(top_builddir)
/src/lib/cryptolink/libkea-cryptolink.la
ctrl_agent_unittests_LDADD
+=
$(top_builddir)
/src/lib/hooks/libkea-hooks.la
ctrl_agent_unittests_LDADD
+=
$(top_builddir)
/src/lib/log/libkea-log.la
ctrl_agent_unittests_LDADD
+=
$(top_builddir)
/src/lib/util/threads/libkea-threads.la
...
...
src/bin/agent/tests/ctrl_agent_controller_unittests.cc
View file @
0bfc13fa
...
...
@@ -8,6 +8,7 @@
#include <agent/ctrl_agent_controller.h>
#include <agent/ctrl_agent_process.h>
#include <process/testutils/d_test_stubs.h>
#include <boost/pointer_cast.hpp>
using
namespace
isc
::
agent
;
using
namespace
isc
::
process
;
...
...
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