You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
370 B
19 lines
370 B
//go:build !linux && !darwin
|
|
|
|
package fuse
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// Sendfile support for unsupported platforms
|
|
|
|
var ErrSendfileNotSupported = errors.New("sendfile not supported on this platform")
|
|
|
|
func sendfileTransfer(outFd int, inFd int, offset *int64, count int) (int, error) {
|
|
return 0, ErrSendfileNotSupported
|
|
}
|
|
|
|
func isSendfileSupported() bool {
|
|
return false
|
|
}
|