2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-03 15:35:17 +00:00

[#1652] Addressed last comments

This commit is contained in:
Francis Dupont
2021-04-23 14:44:56 +02:00
parent b179f4dd8b
commit bbb5bd5f24
3 changed files with 26 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
1889. [func] fdupont
Added support of comments (shell '#', C++ '//' and C
'/*...*/') in JSON commands sent via the control channel or
the Control Agent.
(Gitlab #1652)
1888. [func] tmark
Added a new operational mode, HA+MT, to the HA hook library.
HA+MT provides direct, multi-threaded HTTP communication

View File

@@ -179,7 +179,24 @@ that depends on the specific command.
.. note::
Since Kea 1.9.7 it is possible to put comments in the commands as
in the configuration file.
in the configuration file, for instance:
::
POST / HTTP/1.1\r\n
Content-Type: application/json\r\n
Content-Length: 147\r\n\r\n
{
"command": "foo",
// service is a list
"service": [ "dhcp4" ]
# command arguments are here.
"arguments": {
"param1": "value1"/*,
"param2": "value2",
...*/
}
}
.. _ctrl-channel-client:

View File

@@ -153,7 +153,8 @@ public:
};
// This test verifies that toElement should not be called too soon.
// This test verifies that toElement should not be called before
// the feed detects the end of the data stream.
TEST_F(JSONFeedTest, toElementTooSoon) {
JSONFeed feed;
ASSERT_NO_THROW(feed.initModel());