2016-07-22 18:15:38 +00:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
2011-09-16 15:47:21 +00:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2022-02-11 14:53:56 -08:00
|
|
|
//go:build aix || (js && wasm) || netbsd || openbsd || ios
|
2011-10-26 23:57:58 +00:00
|
|
|
|
2011-09-16 15:47:21 +00:00
|
|
|
package net
|
|
|
|
|
2011-12-03 02:17:34 +00:00
|
|
|
import "io"
|
2011-09-16 15:47:21 +00:00
|
|
|
|
2011-12-03 02:17:34 +00:00
|
|
|
func sendFile(c *netFD, r io.Reader) (n int64, err error, handled bool) {
|
2011-09-16 15:47:21 +00:00
|
|
|
return 0, nil, false
|
|
|
|
}
|