Retro68/gcc/libgo/go/net/tcpsockopt_solaris.go

22 lines
551 B
Go
Raw Normal View History

// Copyright 2015 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 seconds so round to next highest second.
d += (time.Second - time.Nanosecond)
secs := int(d.Seconds())
2018-12-28 15:30:48 +00:00
err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, syscall.SO_KEEPALIVE, secs)
runtime.KeepAlive(fd)
return wrapSyscallError("setsockopt", err)
2015-08-28 15:33:40 +00:00
}