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.2.1~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb58646f1fe70cdae939af8131f9330da28323b4;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 b64450db23..7946a73e6a 100644 --- a/doc/examples/kea4/all-keys.json +++ b/doc/examples/kea4/all-keys.json @@ -352,6 +352,7 @@ "user": "keatest", // TCP user timeout while communicating with the database. + // It is specified in seconds. "tcp-user-timeout": 100 }, { @@ -384,13 +385,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 5e2f438b82..ba3c66f828 100644 --- a/doc/examples/kea6/all-keys.json +++ b/doc/examples/kea6/all-keys.json @@ -311,6 +311,7 @@ "user": "keatest", // TCP user timeout while communicating with the database. + // It is specified in seconds. "tcp-user-timeout": 100 }, { @@ -343,13 +344,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 } ],