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

15 uses

	golang.org/x/crypto/ssh (current package)
		channel.go#L28: type NewChannel interface {
		client.go#L26: 	channelHandlers map[string]chan NewChannel
		client.go#L32: func (c *Client) HandleChannelOpen(channelType string) <-chan NewChannel {
		client.go#L37: 		c := make(chan NewChannel)
		client.go#L47: 	ch = make(chan NewChannel, chanSize)
		client.go#L53: func NewClient(c Conn, chans <-chan NewChannel, reqs <-chan *Request) *Client {
		client.go#L56: 		channelHandlers: make(map[string]chan NewChannel, 1),
		client.go#L71: func NewClientConn(c net.Conn, addr string, config *ClientConfig) (Conn, <-chan NewChannel, <-chan *Request, error) {
		client.go#L146: func (c *Client) handleChannelOpens(in <-chan NewChannel) {
		mux.go#L92: 	incomingChannels chan NewChannel
		mux.go#L119: 		incomingChannels: make(chan NewChannel, chanSize),
		server.go#L190: func NewServerConn(c net.Conn, config *ServerConfig) (*ServerConn, <-chan NewChannel, <-chan *Request, error) {
		tcpip.go#L159: 	newCh NewChannel // the ssh client channel underlying this forward
		tcpip.go#L194: func (l *forwardList) handleChannels(in <-chan NewChannel) {
		tcpip.go#L276: func (l *forwardList) forward(laddr, raddr net.Addr, ch NewChannel) bool {