blob: b413a764d8279cf0bfc888919b1ed78b01f97de7 [file] [log] [blame]
David Presotto918922c2013-07-15 18:40:55 -04001// 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
Mikio Hara484cc672014-09-18 19:17:55 +09005// +build nacl
Mikio Haraf9567402014-09-11 17:56:58 +09006
David Presotto918922c2013-07-15 18:40:55 -04007package net
8
9import (
David Presotto918922c2013-07-15 18:40:55 -040010 "syscall"
11 "time"
12)
13
Mikio Hara484cc672014-09-18 19:17:55 +090014func setNoDelay(fd *netFD, noDelay bool) error {
15 return syscall.ENOPROTOOPT
16}
17
David Presotto918922c2013-07-15 18:40:55 -040018func setKeepAlivePeriod(fd *netFD, d time.Duration) error {
Mikio Haraf9567402014-09-11 17:56:58 +090019 return syscall.ENOPROTOOPT
David Presotto918922c2013-07-15 18:40:55 -040020}