1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-11-17 18:06:15 -05:00
v2fly/common/net/transport.go

35 lines
677 B
Go
Raw Normal View History

2015-09-13 14:01:50 -04:00
package net
import (
"io"
)
const (
bufferSize = 4 * 1024
2015-09-13 14:01:50 -04:00
)
2015-09-21 06:15:25 -04:00
// ReaderToChan dumps all content from a given reader to a chan by constantly reading it until EOF.
2015-09-13 14:01:50 -04:00
func ReaderToChan(stream chan<- []byte, reader io.Reader) error {
for {
2015-09-18 04:14:22 -04:00
buffer := make([]byte, bufferSize)
2015-09-13 14:01:50 -04:00
nBytes, err := reader.Read(buffer)
2015-09-14 12:19:17 -04:00
if nBytes > 0 {
stream <- buffer[:nBytes]
}
2015-09-13 14:01:50 -04:00
if err != nil {
return err
}
}
}
2015-09-21 06:15:25 -04:00
// ChanToWriter dumps all content from a given chan to a writer until the chan is closed.
2015-09-13 14:01:50 -04:00
func ChanToWriter(writer io.Writer, stream <-chan []byte) error {
for buffer := range stream {
2015-09-13 18:30:50 -04:00
_, err := writer.Write(buffer)
2015-09-13 14:01:50 -04:00
if err != nil {
return err
}
}
return nil
}