Mikio Hara | bf61a97f | 2013-07-28 11:18:06 +0900 | [diff] [blame] | 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. |
| 4 | |
Aram Hăvărneanu | db8d5b7 | 2015-03-17 13:50:40 +0100 | [diff] [blame] | 5 | // +build freebsd linux netbsd |
Mikio Hara | bf61a97f | 2013-07-28 11:18:06 +0900 | [diff] [blame] | 6 | |
| 7 | package net |
| 8 | |
| 9 | import ( |
| 10 | "os" |
| 11 | "syscall" |
| 12 | "time" |
| 13 | ) |
| 14 | |
Mikio Hara | bf61a97f | 2013-07-28 11:18:06 +0900 | [diff] [blame] | 15 | func setKeepAlivePeriod(fd *netFD, d time.Duration) error { |
Dmitriy Vyukov | 23e15f7 | 2013-08-09 21:43:00 +0400 | [diff] [blame] | 16 | if err := fd.incref(); err != nil { |
Mikio Hara | bf61a97f | 2013-07-28 11:18:06 +0900 | [diff] [blame] | 17 | return err |
| 18 | } |
| 19 | defer fd.decref() |
Mikio Hara | bf61a97f | 2013-07-28 11:18:06 +0900 | [diff] [blame] | 20 | // The kernel expects seconds so round to next highest second. |
| 21 | d += (time.Second - time.Nanosecond) |
| 22 | secs := int(d.Seconds()) |
Mikio Hara | f956740 | 2014-09-11 17:56:58 +0900 | [diff] [blame] | 23 | if err := syscall.SetsockoptInt(fd.sysfd, syscall.IPPROTO_TCP, syscall.TCP_KEEPINTVL, secs); err != nil { |
| 24 | return os.NewSyscallError("setsockopt", err) |
Mikio Hara | bf61a97f | 2013-07-28 11:18:06 +0900 | [diff] [blame] | 25 | } |
| 26 | return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(fd.sysfd, syscall.IPPROTO_TCP, syscall.TCP_KEEPIDLE, secs)) |
| 27 | } |