mirror of https://github.com/golang/go.git
doc/go1.14: mention new field Transport.DialTLSContext
Updates #21526 Updates #36878 Change-Id: Ic3ae18d31eddb9df01241cbddcc3b7b750cfaa44 Reviewed-on: https://go-review.googlesource.com/c/go/+/217130 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
debc52038b
commit
4fda21bce1
|
|
@ -540,6 +540,20 @@ TODO
|
||||||
can be used to fetch all values associated with a
|
can be used to fetch all values associated with a
|
||||||
canonicalized key.
|
canonicalized key.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<p><!-- CL 61291 -->
|
||||||
|
The
|
||||||
|
new <a href="/pkg/net/http/#Transport"><code>Transport</code></a>
|
||||||
|
field <a href="/pkg/net/http/#Transport.DialTLSContext"><code>DialTLSContext</code></a>
|
||||||
|
can be used to specify an optional dial function for creating
|
||||||
|
TLS connections for non-proxied HTTPS requests.
|
||||||
|
This new field can be used instead
|
||||||
|
of <a href="/pkg/net/http/#Transport.DialTLS"><code>DialTLS</code></a>,
|
||||||
|
which is now considered deprecated; <code>DialTLS</code> will
|
||||||
|
continue to work, but new code should
|
||||||
|
use <code>DialTLSContext</code>, which allows the transport to
|
||||||
|
cancel dials as soon as they are no longer needed.
|
||||||
|
</p>
|
||||||
</dd>
|
</dd>
|
||||||
</dl><!-- net/http -->
|
</dl><!-- net/http -->
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue