From b6684b31042fea4bc9985196670b74a880ba3f65 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Thu, 10 Apr 2014 14:17:48 +1000 Subject: [PATCH] doc/go1.3.html: minor changes: crypto, net All that's left is net/http and the stuff I need help describing: FreeBSD and Windows. LGTM=adg R=golang-codereviews, adg CC=golang-codereviews https://golang.org/cl/86320043 --- doc/go1.3.html | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/doc/go1.3.html b/doc/go1.3.html index 03535aa938..601bf0acc4 100644 --- a/doc/go1.3.html +++ b/doc/go1.3.html @@ -256,11 +256,20 @@ now specifies the behavior when the first argument is zero. It was undefined bef The details are in the documentation for the function. -
  • TODO: crypto/tls: add DialWithDialer (CL 68920045)
  • - -
  • TODO: crypto/tls: report TLS version in ConnectionState (CL 68250043)
  • +
  • In the crypto/tls package, +a new DialWithDialer +function lets one establish a TLS connection using an existing dialer, making it easier +to control dial options such as timeouts. +The package also now reports the TLS version used by the connection in the +ConnectionState +struct. +
  • -
  • TODO: crypto/x509: support CSRs (CL 49830048)
  • +
  • The CreateCertificate +function of the crypto/tls package +now supports parsing (and elsewhere, serialization) of PKCS #10 certificate +signature requests. +
  • The formatted print functions of the fmt package now define %F @@ -290,7 +299,10 @@ The default is still that all errors go to stderr.
  • TODO: net/http: use TCP keep-alives for ListenAndServe and ListenAndServeTLS (CL 48300043)
  • -
  • TODO: net: add Dialer.KeepAlive option (CL 68380043)
  • +
  • In the net package, +the Dialer struct now +has a KeepAlive option to specify a keep-alive period for the connection. +
  • TODO: net: enable fast socket creation using SOCK_CLOEXEC and Accept4 on FreeBSD 10 (69100043)
  • -- 2.50.0