Retro68/gcc/libgo/go/net/tcpsockopt_openbsd.go

17 lines
365 B
Go
Raw Normal View History

// Copyright 2009 The Go Authors. All rights reserved.
2014-09-21 17:33:12 +00:00
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package net
import (
"syscall"
"time"
)
func setKeepAlivePeriod(fd *netFD, d time.Duration) error {
2015-08-28 15:33:40 +00:00
// OpenBSD has no user-settable per-socket TCP keepalive
// options.
return syscall.ENOPROTOOPT
2014-09-21 17:33:12 +00:00
}