github.com/hanwen/go-fuse@v1.0.0/fuse/splice_darwin.go (about)

     1  // Copyright 2016 the Go-FUSE 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.
     4  
     5  package fuse
     6  
     7  import (
     8  	"fmt"
     9  )
    10  
    11  func (s *Server) setSplice() {
    12  	s.canSplice = false
    13  }
    14  
    15  func (ms *Server) trySplice(header []byte, req *request, fdData *readResultFd) error {
    16  	return fmt.Errorf("unimplemented")
    17  }