-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsendfile_unix.go
executable file
·44 lines (40 loc) · 1.05 KB
/
sendfile_unix.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright (c) 2020 Meng Huang ([email protected])
// This package is licensed under a MIT license that can be found in the LICENSE file.
// +build darwin linux dragonfly freebsd netbsd openbsd
package sendfile
import (
"net"
"syscall"
)
// SendFile wraps the sendfile system call.
func SendFile(conn net.Conn, src int, pos, remain int64) (written int64, err error) {
var dst int
if syscallConn, ok := conn.(syscall.Conn); ok {
raw, err := syscallConn.SyscallConn()
if err != nil {
return sendFile(conn, src, pos, remain, maxSendfileSize)
}
raw.Control(func(fd uintptr) {
dst = int(fd)
})
} else {
return sendFile(conn, src, pos, remain, maxSendfileSize)
}
for remain > 0 {
n := maxSendfileSize
if int(remain) < maxSendfileSize {
n = int(remain)
}
position := pos
n, errno := syscall.Sendfile(dst, src, &position, n)
if n > 0 {
pos += int64(n)
written += int64(n)
remain -= int64(n)
} else if (n == 0 && errno == nil) || (errno != nil && errno != syscall.EAGAIN) {
err = errno
break
}
}
return written, err
}