2016-10-31 15:50:02 +00:00
|
|
|
package fuse
|
|
|
|
|
2020-06-29 13:28:52 +00:00
|
|
|
func localVolume(conf *mountConfig) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func volumeName(name string) MountOption {
|
|
|
|
return dummyOption
|
|
|
|
}
|
|
|
|
|
2016-10-31 15:50:02 +00:00
|
|
|
func daemonTimeout(name string) MountOption {
|
|
|
|
return dummyOption
|
|
|
|
}
|
2020-06-29 13:28:52 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|