doc(server): some basic docs on the tls_config object

This should be refactored but something to remember while refactoring.
release-0.4
Brandon Philips 2014-01-31 17:08:37 -08:00
parent 0fa6d38574
commit 58e1f12240
1 changed files with 3 additions and 3 deletions

View File

@ -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.
}