mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 12:37:35 +03:00
crypto/tls: remove unneeded calls to bytes.NewReader
Updates #28269 Change-Id: Iae765f85e6ae49f4b581161ed489b2f5ee27cdba Reviewed-on: https://go-review.googlesource.com/c/145737 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
8d011ce74c
commit
c9ff1b96f3
1 changed files with 2 additions and 9 deletions
11
tls.go
11
tls.go
|
@ -11,7 +11,6 @@ package tls
|
||||||
// https://www.imperialviolet.org/2013/02/04/luckythirteen.html.
|
// https://www.imperialviolet.org/2013/02/04/luckythirteen.html.
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
|
||||||
"crypto"
|
"crypto"
|
||||||
"crypto/ecdsa"
|
"crypto/ecdsa"
|
||||||
"crypto/rsa"
|
"crypto/rsa"
|
||||||
|
@ -30,10 +29,7 @@ import (
|
||||||
// The configuration config must be non-nil and must include
|
// The configuration config must be non-nil and must include
|
||||||
// at least one certificate or else set GetCertificate.
|
// at least one certificate or else set GetCertificate.
|
||||||
func Server(conn net.Conn, config *Config) *Conn {
|
func Server(conn net.Conn, config *Config) *Conn {
|
||||||
return &Conn{
|
return &Conn{conn: conn, config: config}
|
||||||
conn: conn, config: config,
|
|
||||||
input: *bytes.NewReader(nil), // Issue 28269
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Client returns a new TLS client side connection
|
// Client returns a new TLS client side connection
|
||||||
|
@ -41,10 +37,7 @@ func Server(conn net.Conn, config *Config) *Conn {
|
||||||
// The config cannot be nil: users must set either ServerName 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{
|
return &Conn{conn: conn, config: config, isClient: true}
|
||||||
conn: conn, config: config, isClient: true,
|
|
||||||
input: *bytes.NewReader(nil), // Issue 28269
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// A listener implements a network listener (net.Listener) for TLS connections.
|
// A listener implements a network listener (net.Listener) for TLS connections.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue