type golang.org/x/crypto/ssh.Channel

14 uses

	golang.org/x/crypto/ssh (current package)
		channel.go#L32: 	Accept() (Channel, <-chan *Request, error)
		channel.go#L49: type Channel interface {
		channel.go#L491: func (ch *channel) Accept() (Channel, <-chan *Request, error) {
		connection.go#L63: 	OpenChannel(name string, data []byte) (Channel, <-chan *Request, error)
		mux.go#L297: func (m *mux) OpenChannel(chanType string, extra []byte) (Channel, <-chan *Request, error) {
		session.go#L133: 	ch        Channel // the channel backing this session
		session.go#L532: 	ch Channel
		session.go#L587: func newSession(ch Channel, reqs <-chan *Request) (*Session, error) {
		streamlocal.go#L52: func (c *Client) dialStreamLocal(socketPath string) (Channel, error) {
		tcpip.go#L338: 	var ch Channel
		tcpip.go#L415: func (c *Client) dial(laddr string, lport int, raddr string, rport int) (Channel, error) {
		tcpip.go#L431: 	Channel // the backing channel
		tcpip.go#L437: 	Channel

	golang.org/x/crypto/ssh/agent
		forward.go#L81: func forwardUnixSocket(channel ssh.Channel, addr string) {