2017-11-02 18:08:18 +03:00
|
|
|
// Copyright 2017 Joshua J Baker. All rights reserved.
|
|
|
|
// Use of this source code is governed by an MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2017-10-28 22:23:13 +03:00
|
|
|
package internal
|
|
|
|
|
|
|
|
import "syscall"
|
|
|
|
|
|
|
|
// SetKeepAlive sets the keepalive for the connection
|
|
|
|
func SetKeepAlive(fd, secs int) error {
|
|
|
|
if err := syscall.SetsockoptInt(fd, syscall.SOL_SOCKET, 0x8, 1); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
switch err := syscall.SetsockoptInt(fd, syscall.IPPROTO_TCP, 0x101, secs); err {
|
|
|
|
case nil, syscall.ENOPROTOOPT: // OS X 10.7 and earlier don't support this option
|
|
|
|
default:
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return syscall.SetsockoptInt(fd, syscall.IPPROTO_TCP, syscall.TCP_KEEPALIVE, secs)
|
|
|
|
}
|