Retro68/gcc/libgo/go/net/tcpsockopt_posix.go

19 lines
524 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.
//go:build aix || darwin || dragonfly || freebsd || hurd || linux || netbsd || openbsd || solaris || windows
2014-09-21 17:33:12 +00:00
package net
import (
2018-12-28 15:30:48 +00:00
"runtime"
2014-09-21 17:33:12 +00:00
"syscall"
)
func setNoDelay(fd *netFD, noDelay bool) error {
2018-12-28 15:30:48 +00:00
err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, syscall.TCP_NODELAY, boolint(noDelay))
runtime.KeepAlive(fd)
return wrapSyscallError("setsockopt", err)
2014-09-21 17:33:12 +00:00
}