Retro68/gcc/libgo/go/net/tcpsockopt_dragonfly.go

24 lines
698 B
Go
Raw Normal View History

// Copyright 2009 The Go Authors. All rights reserved.
2015-08-28 15:33:40 +00:00
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package net
import (
2018-12-28 15:30:48 +00:00
"runtime"
2015-08-28 15:33:40 +00:00
"syscall"
"time"
)
func setKeepAlivePeriod(fd *netFD, d time.Duration) error {
// The kernel expects milliseconds so round to next highest
// millisecond.
msecs := int(roundDurationUp(d, time.Millisecond))
2018-12-28 15:30:48 +00:00
if err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, syscall.TCP_KEEPINTVL, msecs); err != nil {
return wrapSyscallError("setsockopt", err)
2015-08-28 15:33:40 +00:00
}
2018-12-28 15:30:48 +00:00
err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, syscall.TCP_KEEPIDLE, msecs)
runtime.KeepAlive(fd)
return wrapSyscallError("setsockopt", err)
2015-08-28 15:33:40 +00:00
}