diff options
author | Marcin Siodelski <marcin@isc.org> | 2023-01-16 22:34:27 +0100 |
---|---|---|
committer | Marcin Siodelski <marcin@isc.org> | 2023-01-17 11:28:35 +0100 |
commit | 73ce04f973e4e68b49c4b1767149a86a6fae7ea9 (patch) | |
tree | 42243cac4ef6df90962034476f23ac0309cfade1 /doc/examples | |
parent | [#2688] Mention that tcp-user-timeout is in seconds (diff) | |
download | kea-73ce04f973e4e68b49c4b1767149a86a6fae7ea9.tar.xz kea-73ce04f973e4e68b49c4b1767149a86a6fae7ea9.zip |
[#2688] Add timeout units to example files
Diffstat (limited to 'doc/examples')
-rw-r--r-- | doc/examples/kea4/all-keys.json | 7 | ||||
-rw-r--r-- | doc/examples/kea6/all-keys.json | 7 |
2 files changed, 8 insertions, 6 deletions
diff --git a/doc/examples/kea4/all-keys.json b/doc/examples/kea4/all-keys.json index 1b8072d823..7cd6751c3d 100644 --- a/doc/examples/kea4/all-keys.json +++ b/doc/examples/kea4/all-keys.json @@ -378,6 +378,7 @@ "user": "keatest", // TCP user timeout while communicating with the database. + // It is specified in seconds. "tcp-user-timeout": 100 }, { @@ -410,13 +411,13 @@ // serve-retry-continue "on-fail": "stop-retry-exit", - // Connection connect timeout. + // Connection connect timeout in seconds. "connect-timeout": 100, - // Data read from the database timeout. + // Data read from the database timeout in seconds. "read-timeout": 120, - // Data write to the database timeout. + // Data write to the database timeout in seconds. "write-timeout": 180 } ], diff --git a/doc/examples/kea6/all-keys.json b/doc/examples/kea6/all-keys.json index 7ddf259901..e657492e15 100644 --- a/doc/examples/kea6/all-keys.json +++ b/doc/examples/kea6/all-keys.json @@ -335,6 +335,7 @@ "user": "keatest", // TCP user timeout while communicating with the database. + // It is specified in seconds. "tcp-user-timeout": 100 }, { @@ -367,13 +368,13 @@ // serve-retry-continue "on-fail": "stop-retry-exit", - // Connection connect timeout. + // Connection connect timeout in seconds. "connect-timeout": 100, - // Data read from the database timeout. + // Data read from the database timeout in seconds. "read-timeout": 120, - // Data write to the database timeout. + // Data write to the database timeout in seconds. "write-timeout": 180 } ], |