mirror of
https://github.com/golang/go
synced 2024-11-15 09:01:06 -07:00
net: update the doc for TCPConn.SetKeepAlivePeriod on Windows
The method comment of TCPConn.SetKeepAlivePeriod had become obsolete and inaccurate since CL 565495 and CL 570077 were merged. For #65817 Change-Id: Ide99b2949676d452a505ba6fd634088f05c9df44 Reviewed-on: https://go-review.googlesource.com/c/go/+/576435 Reviewed-by: Than McIntosh <thanm@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
This commit is contained in:
parent
7e9894449e
commit
99b65ae930
@ -241,8 +241,8 @@ func (c *TCPConn) SetKeepAlive(keepalive bool) error {
|
|||||||
// SetKeepAlivePeriod sets the duration the connection needs to
|
// SetKeepAlivePeriod sets the duration the connection needs to
|
||||||
// remain idle before TCP starts sending keepalive probes.
|
// remain idle before TCP starts sending keepalive probes.
|
||||||
//
|
//
|
||||||
// Note that calling this method on Windows will reset the KeepAliveInterval
|
// Note that calling this method on Windows prior to Windows 10 version 1709
|
||||||
// to the default system value, which is normally 1 second.
|
// will reset the KeepAliveInterval to the default system value, which is normally 1 second.
|
||||||
func (c *TCPConn) SetKeepAlivePeriod(d time.Duration) error {
|
func (c *TCPConn) SetKeepAlivePeriod(d time.Duration) error {
|
||||||
if !c.ok() {
|
if !c.ok() {
|
||||||
return syscall.EINVAL
|
return syscall.EINVAL
|
||||||
|
Loading…
Reference in New Issue
Block a user