From 28a8e9ba2f27326efcef7a1f5085ac19120f7216 Mon Sep 17 00:00:00 2001 From: Mikio Hara Date: Thu, 12 Sep 2013 15:12:40 +0900 Subject: [PATCH] doc/go1.2.html: happy eyeballs on net Also fix trivial nits. R=golang-dev, r CC=golang-dev https://golang.org/cl/13532046 --- doc/go1.2.html | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/doc/go1.2.html b/doc/go1.2.html index fc3947598f..1fe616a6d3 100644 --- a/doc/go1.2.html +++ b/doc/go1.2.html @@ -633,11 +633,11 @@ if it is nil, Floyd-Steinberg error diffusion is used.
  • -TheCopy method of the +The Copy method of the io package now prioritizes its arguments differently. If one argument implements WriterTo -and the other implements iReaderFrom, +and the other implements ReaderFrom, Copy will now invoke WriterTo to do the work, so that less intermediate buffering is required in general. @@ -647,6 +647,13 @@ so that less intermediate buffering is required in general. net: TODO new build tag netgo for building a pure Go net package (CL 7100050).
  • +
  • +The net package adds a new field +DualStack to the Dialer +struct for TCP connection setup using a dual IP stack as described in +RFC 6555. +
  • +
  • net/http: TODO don't allow sending invalid cookie lines (CL 12204043).
  • -- 2.50.0