mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
13 lines
271 B
Go
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
|
|
}
|