Brad Fitzpatrick | b0f39cc | 2011-05-25 10:15:26 -0700 | [diff] [blame] | 1 | // 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 Cheney | 7c8280c | 2014-02-25 09:47:42 -0500 | [diff] [blame] | 5 | // +build darwin nacl netbsd openbsd solaris |
Russ Cox | 2715956 | 2011-09-15 16:48:57 -0400 | [diff] [blame] | 6 | |
Brad Fitzpatrick | b0f39cc | 2011-05-25 10:15:26 -0700 | [diff] [blame] | 7 | package net |
| 8 | |
Russ Cox | eb69292 | 2011-11-01 22:05:34 -0400 | [diff] [blame] | 9 | import "io" |
Brad Fitzpatrick | b0f39cc | 2011-05-25 10:15:26 -0700 | [diff] [blame] | 10 | |
Russ Cox | eb69292 | 2011-11-01 22:05:34 -0400 | [diff] [blame] | 11 | func sendFile(c *netFD, r io.Reader) (n int64, err error, handled bool) { |
Brad Fitzpatrick | b0f39cc | 2011-05-25 10:15:26 -0700 | [diff] [blame] | 12 | return 0, nil, false |
| 13 | } |