From: Ian Lance Taylor Date: Fri, 20 Mar 2020 01:17:21 +0000 (-0700) Subject: internal/poll: update Windows Server Performance URL in comment X-Git-Tag: go1.15beta1~812 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=65367df4776a9fcc44c5aebbac994f76a1f4a897;p=gostls13.git internal/poll: update Windows Server Performance URL in comment Change-Id: Ida8048720611ecf50d7e7626a42715921bbc753b Reviewed-on: https://go-review.googlesource.com/c/go/+/224237 Reviewed-by: Emmanuel Odeke --- diff --git a/src/internal/poll/fd_windows.go b/src/internal/poll/fd_windows.go index cabca75d22..b330ae21a9 100644 --- a/src/internal/poll/fd_windows.go +++ b/src/internal/poll/fd_windows.go @@ -402,7 +402,7 @@ func (fd *FD) Init(net string, pollable bool) (string, error) { // We do not use events, so we can skip them always. flags := uint8(syscall.FILE_SKIP_SET_EVENT_ON_HANDLE) // It's not safe to skip completion notifications for UDP: - // https://blogs.technet.com/b/winserverperformance/archive/2008/06/26/designing-applications-for-high-performance-part-iii.aspx + // https://docs.microsoft.com/en-us/archive/blogs/winserverperformance/designing-applications-for-high-performance-part-iii if net == "tcp" { flags |= syscall.FILE_SKIP_COMPLETION_PORT_ON_SUCCESS }