github.com/sagernet/sing@v0.2.6/common/bufio/copy_direct_windows.go (about) 1 package bufio 2 3 import ( 4 "io" 5 6 N "github.com/sagernet/sing/common/network" 7 ) 8 9 func copyWaitWithPool(originDestination io.Writer, destination N.ExtendedWriter, source N.ReadWaiter, readCounters []N.CountFunc, writeCounters []N.CountFunc) (handled bool, n int64, err error) { 10 return 11 } 12 13 func copyPacketWaitWithPool(destinationConn N.PacketWriter, source N.PacketReadWaiter, readCounters []N.CountFunc, writeCounters []N.CountFunc) (handled bool, n int64, err error) { 14 return 15 } 16 17 func createSyscallReadWaiter(reader any) (N.ReadWaiter, bool) { 18 return nil, false 19 } 20 21 func createSyscallPacketReadWaiter(reader any) (N.PacketReadWaiter, bool) { 22 return nil, false 23 }