mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-03 21:55:35 +00:00
The TCPProxy can proxy from anything which satisfies this interface:
type Conn interface {
io.Reader
io.Writer
io.Closer
CloseRead() error
CloseWrite() error
}
Signed-off-by: David Scott <dave.scott@docker.com>