From: Brad Fitzpatrick Date: Wed, 9 Apr 2014 02:46:33 +0000 (-0700) Subject: doc: add a couple net/http go1.3 items X-Git-Tag: go1.3beta1~152 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=4f193cdc5d828a246d6a8cab3c34e8c5b89d6f08;p=gostls13.git doc: add a couple net/http go1.3 items LGTM=r R=r CC=golang-codereviews https://golang.org/cl/85760043 --- diff --git a/doc/go1.3.html b/doc/go1.3.html index 2c37eb63cf..6b750493f9 100644 --- a/doc/go1.3.html +++ b/doc/go1.3.html @@ -227,9 +227,18 @@ The formatted print functions of the fmt package now define % as a synonym for %f when printing floating-point values. -
  • TODO: net/http: add Request.TLS (CL 52660047)
  • +
  • +The net/http package now exposes the +the properties of a TLS connection used to make a client request in the new +Response.TLS field. +
  • -
  • TODO: net/http: add Server.ErrorLog; log and test TLS handshake errors (CL 70250044)
  • +
  • +The net/http package now +allows setting an optional server error logger +with Server.ErrorLog. +The default is still that all errors go to stderr. +
  • TODO: net/http: add Server.SetKeepAlivesEnabled (CL 69670043)