mirror of
https://github.com/fumiama/terasu-cloudflared.git
synced 2026-06-07 01:50:23 +08:00
14 lines
171 B
Go
14 lines
171 B
Go
// +build go1.10
|
|
|
|
package pbufio
|
|
|
|
import "bufio"
|
|
|
|
func writerSize(bw *bufio.Writer) int {
|
|
return bw.Size()
|
|
}
|
|
|
|
func readerSize(br *bufio.Reader) int {
|
|
return br.Size()
|
|
}
|