tcpsockopt_darwin.go 770 B

12345678910111213141516171819202122232425
  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. package net
  5. import (
  6. "runtime"
  7. "syscall"
  8. "time"
  9. )
  10. // syscall.TCP_KEEPINTVL is missing on some darwin architectures.
  11. const sysTCP_KEEPINTVL = 0x101
  12. func setKeepAlivePeriod(fd *netFD, d time.Duration) error {
  13. // The kernel expects seconds so round to next highest second.
  14. secs := int(roundDurationUp(d, time.Second))
  15. if err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, sysTCP_KEEPINTVL, secs); err != nil {
  16. return wrapSyscallError("setsockopt", err)
  17. }
  18. err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, syscall.TCP_KEEPALIVE, secs)
  19. runtime.KeepAlive(fd)
  20. return wrapSyscallError("setsockopt", err)
  21. }