blob: a0760b4e5264c8526eaa61a16d4737f6fe081921 [file] [log] [blame]
Brad Fitzpatrickb0f39cc2011-05-25 10:15:26 -07001// Copyright 2011 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
Aram Hăvărneanu92e959a2015-03-23 13:51:12 +01005// +build darwin nacl netbsd openbsd
Russ Cox27159562011-09-15 16:48:57 -04006
Brad Fitzpatrickb0f39cc2011-05-25 10:15:26 -07007package net
8
Russ Coxeb692922011-11-01 22:05:34 -04009import "io"
Brad Fitzpatrickb0f39cc2011-05-25 10:15:26 -070010
Russ Coxeb692922011-11-01 22:05:34 -040011func sendFile(c *netFD, r io.Reader) (n int64, err error, handled bool) {
Brad Fitzpatrickb0f39cc2011-05-25 10:15:26 -070012 return 0, nil, false
13}