diff --git a/server/tls_config.go b/server/tls_config.go index 29b8fa5e4..733f9c082 100644 --- a/server/tls_config.go +++ b/server/tls_config.go @@ -6,7 +6,7 @@ import ( // TLSConfig holds the TLS configuration. type TLSConfig struct { - Scheme string - Server tls.Config - Client tls.Config + Scheme string // http or https + Server tls.Config // Used by the Raft or etcd Server transporter. + Client tls.Config // Used by the Raft peer client. }