From 4f193cdc5d828a246d6a8cab3c34e8c5b89d6f08 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Tue, 8 Apr 2014 19:46:33 -0700 Subject: [PATCH] doc: add a couple net/http go1.3 items LGTM=r R=r CC=golang-codereviews https://golang.org/cl/85760043 --- doc/go1.3.html | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) 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)