Commit 19fe9a2c authored by Brad Fitzpatrick's avatar Brad Fitzpatrick Committed by Andrew Gerrand

crypto/tls: fix typo referencing the required Config field

Thanks to Frithjof Schulze for noticing.

LGTM=adg
R=adg
CC=agl, golang-codereviews, r
https://golang.org/cl/107740043
parent 14a75ecf
...@@ -28,7 +28,7 @@ func Server(conn net.Conn, config *Config) *Conn { ...@@ -28,7 +28,7 @@ func Server(conn net.Conn, config *Config) *Conn {
// Client returns a new TLS client side connection // Client returns a new TLS client side connection
// using conn as the underlying transport. // using conn as the underlying transport.
// The config cannot be nil: users must set either ServerHostname or // The config cannot be nil: users must set either ServerName or
// InsecureSkipVerify in the config. // InsecureSkipVerify in the config.
func Client(conn net.Conn, config *Config) *Conn { func Client(conn net.Conn, config *Config) *Conn {
return &Conn{conn: conn, config: config, isClient: true} return &Conn{conn: conn, config: config, isClient: true}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment