]> Cypherpunks repositories - gostls13.git/commitdiff
doc: add a couple net/http go1.3 items
authorBrad Fitzpatrick <bradfitz@golang.org>
Wed, 9 Apr 2014 02:46:33 +0000 (19:46 -0700)
committerBrad Fitzpatrick <bradfitz@golang.org>
Wed, 9 Apr 2014 02:46:33 +0000 (19:46 -0700)
LGTM=r
R=r
CC=golang-codereviews
https://golang.org/cl/85760043

doc/go1.3.html

index 2c37eb63cfd5a208ef2676f58571986fe3c94090..6b750493f9dbcf75e7db6e9bf70bb24d4ce803ee 100644 (file)
@@ -227,9 +227,18 @@ The formatted print functions of the <code>fmt</code> package now define <code>%
 as a synonym for <code>%f</code> when printing floating-point values.
 </li>
 
-<li> TODO: net/http: add Request.TLS (CL 52660047)</li>
+<li>
+The <a href="/pkg/net/http/"><code>net/http</code></a> package now exposes the
+the properties of a TLS connection used to make a client request in the new
+<a href="/pkg/net/http/#Response"><code>Response.TLS</code></a> field.
+</li>
 
-<li> TODO: net/http: add Server.ErrorLog; log and test TLS handshake errors (CL 70250044)</li>
+<li>
+The <a href="/pkg/net/http/"><code>net/http</code></a> package now
+allows setting an optional server error logger
+with <a href="/pkg/net/http/#Server"><code>Server.ErrorLog</code></a>.
+The default is still that all errors go to stderr.
+</li>
 
 <li> TODO: net/http: add Server.SetKeepAlivesEnabled (CL 69670043)</li>