mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 12:57:38 +03:00
20 lines
479 B
Go
20 lines
479 B
Go
package bufio
|
|
|
|
import (
|
|
"syscall"
|
|
|
|
N "github.com/sagernet/sing/common/network"
|
|
)
|
|
|
|
func CopyDirect(source syscall.Conn, destination syscall.Conn, readCounters []N.CountFunc, writeCounters []N.CountFunc) (handed bool, n int64, err error) {
|
|
rawSource, err := source.SyscallConn()
|
|
if err != nil {
|
|
return
|
|
}
|
|
rawDestination, err := destination.SyscallConn()
|
|
if err != nil {
|
|
return
|
|
}
|
|
handed, n, err = splice(rawSource, rawDestination, readCounters, writeCounters)
|
|
return
|
|
}
|