rclone/vendor/bazil.org/fuse/options_linux.go

40 lines
619 B
Go
Raw Normal View History

package fuse
func localVolume(conf *mountConfig) error {
return nil
}
func volumeName(name string) MountOption {
return dummyOption
}
func daemonTimeout(name string) MountOption {
return dummyOption
}
func noAppleXattr(conf *mountConfig) error {
return nil
}
func noAppleDouble(conf *mountConfig) error {
return nil
}
func exclCreate(conf *mountConfig) error {
return nil
}
func noBrowse(conf *mountConfig) error {
return nil
}
func maxPages(count uint16) MountOption {
return func(conf *mountConfig) error {
if count > 256 || count == 0 {
count = 256
}
conf.maxPages = count
return nil
}
}