summaryrefslogtreecommitdiffstats
path: root/src/net/sockopt_plan9.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/net/sockopt_plan9.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/net/sockopt_plan9.go b/src/net/sockopt_plan9.go
new file mode 100644
index 0000000..02468cd
--- /dev/null
+++ b/src/net/sockopt_plan9.go
@@ -0,0 +1,19 @@
+// Copyright 2014 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package net
+
+import "syscall"
+
+func setKeepAlive(fd *netFD, keepalive bool) error {
+ if keepalive {
+ _, e := fd.ctl.WriteAt([]byte("keepalive"), 0)
+ return e
+ }
+ return nil
+}
+
+func setLinger(fd *netFD, sec int) error {
+ return syscall.EPLAN9
+}