...

Source file src/net/tcpsockopt_posix.go

Documentation: net

		 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  
		 5  //go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || windows
		 6  // +build aix darwin dragonfly freebsd linux netbsd openbsd solaris windows
		 7  
		 8  package net
		 9  
		10  import (
		11  	"runtime"
		12  	"syscall"
		13  )
		14  
		15  func setNoDelay(fd *netFD, noDelay bool) error {
		16  	err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, syscall.TCP_NODELAY, boolint(noDelay))
		17  	runtime.KeepAlive(fd)
		18  	return wrapSyscallError("setsockopt", err)
		19  }
		20  

View as plain text