From: Marcin Siodelski Date: Mon, 16 Jan 2023 21:34:27 +0000 (+0100) Subject: [#2688] Add timeout units to example files X-Git-Tag: Kea-2.3.4~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73ce04f973e4e68b49c4b1767149a86a6fae7ea9;p=thirdparty%2Fkea.git [#2688] Add timeout units to example files --- 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 } ],