]> Cypherpunks repositories - gostls13.git/commitdiff
internal/poll: update Windows Server Performance URL in comment
authorIan Lance Taylor <iant@golang.org>
Fri, 20 Mar 2020 01:17:21 +0000 (18:17 -0700)
committerIan Lance Taylor <iant@golang.org>
Fri, 20 Mar 2020 01:53:12 +0000 (01:53 +0000)
Change-Id: Ida8048720611ecf50d7e7626a42715921bbc753b
Reviewed-on: https://go-review.googlesource.com/c/go/+/224237
Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com>
src/internal/poll/fd_windows.go

index cabca75d225f915f07c9738f824add4248501434..b330ae21a99ae6f0b646259ed3d00ebc7a09fa48 100644 (file)
@@ -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
                }