From: Paul Marks Date: Fri, 17 Jul 2015 21:23:26 +0000 (-0700) Subject: doc/go1.5.html: update the net.Dial release notes. X-Git-Tag: go1.5beta3~137 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=abf943aa37b205b34c02b2edd9f0267782283d0a;p=gostls13.git doc/go1.5.html: update the net.Dial release notes. Change-Id: Ie02426b2b726170d858de96fdd8c51bfdf20d7dc Reviewed-on: https://go-review.googlesource.com/12376 Reviewed-by: Brad Fitzpatrick --- diff --git a/doc/go1.5.html b/doc/go1.5.html index 56adaa1558..79f5b8c1d2 100644 --- a/doc/go1.5.html +++ b/doc/go1.5.html @@ -1071,11 +1071,14 @@ package that implements the quoted-printable encoding defined by RFC 2045.
  • -Go 1.5's net package -adds RFC-6555-compliant dialing for sites with multiple TCP -addresses listed in DNS. -A new DualStack field -in Dialer enables the feature. +The net package will now +Dial hostnames by trying each +IP address in order until one succeeds. +The Dialer.DualStack +mode now implements Happy Eyeballs +(RFC 6555) by giving the +first address family a 300ms head start; this value can be overridden by +the new Dialer.FallbackDelay.