...

Package fakenet

import "golang.org/x/tools/internal/fakenet"
Overview
Index

Overview ▾

func NewConn

func NewConn(name string, in io.ReadCloser, out io.WriteCloser) net.Conn

NewConn returns a net.Conn built on top of the supplied reader and writer. It decouples the read and write on the conn from the underlying stream to enable Close to abort ones that are in progress. It's primary use is to fake a network connection from stdin and stdout.