github.com/sagernet/sing@v0.4.0-beta.19.0.20240518125136-f67a0988a636/common/bufio/splice_stub.go (about)

     1  //go:build !linux
     2  
     3  package bufio
     4  
     5  import (
     6  	"syscall"
     7  
     8  	N "github.com/sagernet/sing/common/network"
     9  )
    10  
    11  func splice(source syscall.RawConn, destination syscall.RawConn, readCounters []N.CountFunc, writeCounters []N.CountFunc) (handed bool, n int64, err error) {
    12  	return
    13  }