summaryrefslogtreecommitdiff
path: root/src/gateway/dlt_gateway.conf
diff options
context:
space:
mode:
authorBui Nguyen Quoc Thanh <Thanh.BuiNguyenQuoc@vn.bosch.com>2020-02-21 16:59:19 +0700
committerSaya Sugiura <39760799+ssugiura@users.noreply.github.com>2020-07-06 10:04:07 +0900
commitd46840c9cd0e52dd7d133bbd64805fb9b8aa2aac (patch)
tree584e9c9fc413c97901e8ac90ab28d0f8814323aa /src/gateway/dlt_gateway.conf
parentc215d96ee6543fbc9429a1962c7d7b58593977ea (diff)
downloadDLT-daemon-d46840c9cd0e52dd7d133bbd64805fb9b8aa2aac.tar.gz
gateway: Support infinite loop of retry
- In order to enable endless retry of reconnection, "Timeout" in dlt_gateway.conf must be set to 0. - In case of "Timeout" is an integer A and A is greater than 0, so after A times of retry, the connection to passive Node will be marked as DISABLED. There won't be any retry afterward. Signed-off-by: Bui Nguyen Quoc Thanh <Thanh.BuiNguyenQuoc@vn.bosch.com>
Diffstat (limited to 'src/gateway/dlt_gateway.conf')
-rw-r--r--src/gateway/dlt_gateway.conf5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gateway/dlt_gateway.conf b/src/gateway/dlt_gateway.conf
index c7ef3a8..3f475e6 100644
--- a/src/gateway/dlt_gateway.conf
+++ b/src/gateway/dlt_gateway.conf
@@ -10,8 +10,13 @@ IPaddress=192.168.2.11
EcuID=ECU2
; Try connect to passive Node on DLT Daemon startup. Default OnStartup if not specified.
; Connect=OnStartup
+
; Stop connecting to passive node, if not successful after 10 retries.
+; After <Timeout> of retries, the connection to passive Node is marked as DISABLED.
+; It means there is no any retry anymore.
+; Set to 0 for endless retry.
Timeout=10
+
; Send following control messages after connection is established
; SendControl=0x03,0x04,0x13
; Send Serial Header with control messages. Value in dlt.conf is used as default if not specified.