mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
471 B
18 lines
471 B
// Package bufio is a replacement of the standard golang package bufio.
|
|
package bufio
|
|
|
|
import (
|
|
"bufio"
|
|
"io"
|
|
)
|
|
|
|
// OriginalReader invokes bufio.NewReader() from Golang standard library.
|
|
func OriginalReader(reader io.Reader) *bufio.Reader {
|
|
return bufio.NewReader(reader)
|
|
}
|
|
|
|
// OriginalReaderSize invokes bufio.NewReaderSize() from Golang standard library.
|
|
func OriginalReaderSize(reader io.Reader, size int) *bufio.Reader {
|
|
return bufio.NewReaderSize(reader, size)
|
|
}
|