Skip to content

Commit 5f3a785

Browse files
author
Razvan Becheriu
committed
[#3082] updated D2 docs
1 parent 0943f50 commit 5f3a785

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

doc/sphinx/arm/ddns.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,8 @@ operating system, i.e. the size of the ``sun_path`` field in the
319319
different operating systems, between 91 and 107 characters. Typical
320320
values are 107 on Linux and 103 on FreeBSD.
321321

322+
Kea supports only one ``unix`` control socket in the "control-sockets" list.
323+
322324
Communication over the control channel is conducted using JSON structures.
323325
See the `Control Channel section in the Kea Developer's
324326
Guide <https://reports.kea.isc.org/dev_guide/d2/d96/ctrlSocket.html>`__
@@ -424,6 +426,9 @@ password, these values can be read from files. The syntax is extended by:
424426
- The ``user-file`` client parameter, which, with the ``directory`` parameter,
425427
specifies the path of a file where the user ID can be read.
426428

429+
Since Kea-2.7.6 Kea supports multiple HTTP/HTTPS connections.
430+
Both IPv4 and IPv6 addresses can be used.
431+
427432
When files are used, they are read when the configuration is loaded,
428433
to detect configuration errors as soon as possible.
429434

@@ -448,6 +453,11 @@ to detect configuration errors as soon as possible.
448453
"password": "1234"
449454
} ]
450455
}
456+
},
457+
{
458+
"socket-type": "http",
459+
"socket-address": "2010:30:40::50",
460+
"socket-port": 8004
451461
}
452462
],
453463
...

src/lib/config/unix_command_config.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ class UnixCommandConfig : public isc::data::UserContext,
8181
/// @brief Pointer to a UnixCommandConfig object.
8282
typedef boost::shared_ptr<UnixCommandConfig> UnixCommandConfigPtr;
8383

84+
/// @brief Structure used to store UNIX connection data.
85+
/// (configuration, acceptor, etc.)
8486
struct UnixSocketInfo {
8587
/// @brief Flag which indicates if socket can be reused.
8688
bool usable_;

0 commit comments

Comments
 (0)