Added extra fields for DispatcherHost such as in RemoteHost in rpcconn.go

This commit is contained in:
nickolasdaniel
2021-07-13 17:36:27 +03:00
committed by Dan Christian Bogos
parent 89f9a9bffd
commit d8a803db0b
5 changed files with 102 additions and 36 deletions

View File

@@ -704,9 +704,17 @@ type TPDispatcherHost struct {
// TPDispatcherHostConn is used in TPDispatcherHost
type TPDispatcherHostConn struct {
Address string
Transport string
TLS bool
Address string
Transport string
Synchronous bool
ConnectAttempts int
Reconnects int
ConnectTimeout time.Duration
ReplyTimeout time.Duration
TLS bool
ClientKey string
ClientCertificate string
CaCertificate string
}
type AttrRemoteLock struct {