Source file
src/net/tcpsockopt_darwin.go
1
2
3
4
5 package net
6
7 import (
8 "runtime"
9 "syscall"
10 "time"
11 )
12
13
14 const sysTCP_KEEPINTVL = 0x101
15
16 func setKeepAlivePeriod(fd *netFD, d time.Duration) error {
17
18 secs := int(roundDurationUp(d, time.Second))
19 if err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, sysTCP_KEEPINTVL, secs); err != nil {
20 return wrapSyscallError("setsockopt", err)
21 }
22 err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, syscall.TCP_KEEPALIVE, secs)
23 runtime.KeepAlive(fd)
24 return wrapSyscallError("setsockopt", err)
25 }
26
View as plain text