mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-25 06:46:35 +00:00
14 lines
154 B
Go
14 lines
154 B
Go
// +build !go1.5
|
|
|
|
package packed
|
|
|
|
import (
|
|
"bufio"
|
|
"io"
|
|
"io/ioutil"
|
|
)
|
|
|
|
func discard(r *bufio.Reader, n int) {
|
|
io.CopyN(ioutil.Discard, r, int64(n))
|
|
}
|