Fix "PR c++/92804 ICE trying to use concept as a nested-name-specifier"
[official-gcc.git] / libgo / go / net / tcpsockopt_openbsd.go
blob10e1bef3e5aaed12b5a05cdcd43f611f8e1a2254
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.
5 package net
7 import (
8 "syscall"
9 "time"
12 func setKeepAlivePeriod(fd *netFD, d time.Duration) error {
13 // OpenBSD has no user-settable per-socket TCP keepalive
14 // options.
15 return syscall.ENOPROTOOPT