sing/common/bufio/splice_stub.go
2023-04-25 20:27:20 +08:00

13 lines
271 B
Go

//go:build !linux
package bufio
import (
"syscall"
N "github.com/sagernet/sing/common/network"
)
func splice(source syscall.RawConn, destination syscall.RawConn, readCounters []N.CountFunc, writeCounters []N.CountFunc) (handed bool, n int64, err error) {
return
}