Rebase.
[official-gcc.git] / libgo / go / net / tcpsockopt_unix.go
blob2693a541d209fa14af05ee4d4389b7299d7509de
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 freebsd linux nacl netbsd
7 package net
9 import (
10 "os"
11 "syscall"
12 "time"
15 // Set keep alive period.
16 func setKeepAlivePeriod(fd *netFD, d time.Duration) error {
17 if err := fd.incref(); err != nil {
18 return err
20 defer fd.decref()
22 // The kernel expects seconds so round to next highest second.
23 d += (time.Second - time.Nanosecond)
24 secs := int(d.Seconds())
26 err := os.NewSyscallError("setsockopt", syscall.SetsockoptInt(fd.sysfd, syscall.IPPROTO_TCP, syscall.TCP_KEEPINTVL, secs))
27 if err != nil {
28 return err
30 return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(fd.sysfd, syscall.IPPROTO_TCP, syscall.TCP_KEEPIDLE, secs))