LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 // +build darwin freebsd linux netbsd openbsd windows | 5 // +build darwin freebsd linux netbsd openbsd windows |
6 | 6 |
7 package net | 7 package net |
8 | 8 |
9 import ( | 9 import ( |
10 "os" | 10 "os" |
11 "syscall" | 11 "syscall" |
12 ) | 12 ) |
13 | 13 |
14 func setNoDelay(fd *netFD, noDelay bool) error { | 14 func setNoDelay(fd *netFD, noDelay bool) error { |
15 » if err := fd.incref(false); err != nil { | 15 » if err := fd.incref(); err != nil { |
16 return err | 16 return err |
17 } | 17 } |
18 defer fd.decref() | 18 defer fd.decref() |
19 return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(fd.sysfd,
syscall.IPPROTO_TCP, syscall.TCP_NODELAY, boolint(noDelay))) | 19 return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(fd.sysfd,
syscall.IPPROTO_TCP, syscall.TCP_NODELAY, boolint(noDelay))) |
20 } | 20 } |
LEFT | RIGHT |