File: tcpsockopt_dragonfly.go

package info (click to toggle)
golang-1.6 1.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 60,180 kB
  • ctags: 121,823
  • sloc: asm: 36,903; ansic: 7,370; sh: 1,434; perl: 1,120; xml: 623; python: 286; yacc: 155; makefile: 107; cpp: 22; awk: 7
file content (26 lines) | stat: -rw-r--r-- 784 bytes parent folder | download | duplicates (18)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2009 The Go Authors.  All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package net

import (
	"os"
	"syscall"
	"time"
)

func setKeepAlivePeriod(fd *netFD, d time.Duration) error {
	if err := fd.incref(); err != nil {
		return err
	}
	defer fd.decref()
	// The kernel expects milliseconds so round to next highest
	// millisecond.
	d += (time.Millisecond - time.Nanosecond)
	msecs := int(d / time.Millisecond)
	if err := syscall.SetsockoptInt(fd.sysfd, syscall.IPPROTO_TCP, syscall.TCP_KEEPINTVL, msecs); err != nil {
		return os.NewSyscallError("setsockopt", err)
	}
	return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(fd.sysfd, syscall.IPPROTO_TCP, syscall.TCP_KEEPIDLE, msecs))
}