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.
13 // sendFile copies the contents of r to c using the sendfile
14 // system call to minimize copies.
16 // if handled == true, sendFile returns the number of bytes copied and any
19 // if handled == false, sendFile performed no work.
20 func sendFile(c
*netFD
, r io
.Reader
) (written
int64, err error
, handled
bool) {
21 var remain
int64 = 1 << 62 // by default, copy until EOF
23 lr
, ok
:= r
.(*io
.LimitedReader
)
25 remain
, r
= lr
.N
, lr
.R
35 written
, err
= poll
.SendFile(&c
.pfd
, int(f
.Fd()), remain
)
38 lr
.N
= remain
- written
40 return written
, wrapSyscallError("sendfile", err
), written
> 0