blob: 03426ef0df17897e9966d95b7c44b5cd08e3759d [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
Dave Cheney7c8280c2014-02-25 09:47:42 -05005// +build darwin nacl netbsd openbsd solaris
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}