package proxy
import (
"bufio"
"net"
)
func newBufReader(conn net.Conn) *bufio.Reader {
return bufio.NewReader(conn)
}