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 (
|
|
|
|
"os"
|
|
|
|
"syscall"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
func setKeepAlivePeriod(fd *netFD, d time.Duration) error {
|
|
|
|
if err := fd.incref(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer fd.decref()
|
2014-09-11 02:56:58 -06:00
|
|
|
// The kernel expects milliseconds so round to next highest
|
|
|
|
// millisecond.
|
2014-03-12 23:45:50 -06:00
|
|
|
d += (time.Millisecond - time.Nanosecond)
|
2014-09-11 02:56:58 -06:00
|
|
|
msecs := int(d / time.Millisecond)
|
|
|
|
if err := syscall.SetsockoptInt(fd.sysfd, syscall.IPPROTO_TCP, syscall.TCP_KEEPINTVL, msecs); err != nil {
|
|
|
|
return os.NewSyscallError("setsockopt", err)
|
2014-03-12 23:45:50 -06:00
|
|
|
}
|
|
|
|
return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(fd.sysfd, syscall.IPPROTO_TCP, syscall.TCP_KEEPIDLE, msecs))
|
|
|
|
}
|