From 65367df4776a9fcc44c5aebbac994f76a1f4a897 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 19 Mar 2020 18:17:21 -0700 Subject: [PATCH] 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 --- src/internal/poll/fd_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- 2.50.0