From f1db925b214ba26c03b9be0652c3494403a2c5b7 Mon Sep 17 00:00:00 2001 From: ijufumi Date: Mon, 7 Jan 2019 17:41:50 +0900 Subject: [PATCH] Add SocketTimeout to config/doc.go --- config/doc.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/config/doc.go b/config/doc.go index 58af30adb..041baf745 100644 --- a/config/doc.go +++ b/config/doc.go @@ -250,6 +250,16 @@ SocketConnectHost Alternate socket hosts for connecting to a session for failover, where n is a positive integer. (i.e.) SocketConnectHost1, SocketConnectHost2... must be consecutive and have a matching SocketConnectPort[n]. Value must be a valid IPv4 or IPv6 address or a domain name +SocketTimeout + +Duration of timeout for TLS handshake. Only used for initiators. + +Example Values: + SocketTimeout=30s # 30 seconds + SocketTimeout=60m # 60 minutes + +Defaults to 0(means nothing timeout). + SocketAcceptHost Socket host address for listening on incoming connections, only used for acceptors. By default acceptors listen on all available interfaces.