2016-03-01 15:57:46 -07:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
2014-03-12 23:45:50 -06:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package net
|
|
|
|
|
|
|
|
import (
|
2017-02-13 12:08:21 -07:00
|
|
|
"runtime"
|
2014-03-12 23:45:50 -06:00
|
|
|
"syscall"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
func setKeepAlivePeriod(fd *netFD, d time.Duration) error {
|
2014-09-11 02:56:58 -06:00
|
|
|
// The kernel expects milliseconds so round to next highest
|
|
|
|
// millisecond.
|
2019-05-17 10:55:17 -06:00
|
|
|
msecs := int(roundDurationUp(d, time.Millisecond))
|
2017-02-13 12:08:21 -07:00
|
|
|
if err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, syscall.TCP_KEEPINTVL, msecs); err != nil {
|
|
|
|
return wrapSyscallError("setsockopt", err)
|
2014-03-12 23:45:50 -06:00
|
|
|
}
|
2017-02-13 12:08:21 -07:00
|
|
|
err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, syscall.TCP_KEEPIDLE, msecs)
|
|
|
|
runtime.KeepAlive(fd)
|
|
|
|
return wrapSyscallError("setsockopt", err)
|
2014-03-12 23:45:50 -06:00
|
|
|
}
|