golang.org/x/crypto/ssh.mux.incomingChannels (field)

6 uses

	golang.org/x/crypto/ssh (current package)
		client.go#L88: 	return conn, conn.mux.incomingChannels, conn.mux.incomingRequests, nil
		mux.go#L92: 	incomingChannels chan NewChannel
		mux.go#L119: 		incomingChannels: make(chan NewChannel, chanSize),
		mux.go#L197: 	close(m.incomingChannels)
		mux.go#L293: 	m.incomingChannels <- c
		server.go#L211: 	return &ServerConn{s, perms}, s.mux.incomingChannels, s.mux.incomingRequests, nil