libgo: update to Go 1.11
[official-gcc.git] / libgo / go / net / tcpsockopt_unix.go
blobd5892588feaabd23f9b7d427eaaf2bf11b980548
1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // +build aix freebsd linux netbsd
7 package net
9 import (
10 "runtime"
11 "syscall"
12 "time"
15 func setKeepAlivePeriod(fd *netFD, d time.Duration) error {
16 // The kernel expects seconds so round to next highest second.
17 d += (time.Second - time.Nanosecond)
18 secs := int(d.Seconds())
19 if err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, syscall.TCP_KEEPINTVL, secs); err != nil {
20 return wrapSyscallError("setsockopt", err)
22 err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, syscall.TCP_KEEPIDLE, secs)
23 runtime.KeepAlive(fd)
24 return wrapSyscallError("setsockopt", err)