golang.org/x/crypto/ssh.chanList.chans (field)
13 uses
golang.org/x/crypto/ssh (current package)
mux.go#L27: chans []*channel
mux.go#L39: for i := range c.chans {
mux.go#L40: if c.chans[i] == nil {
mux.go#L41: c.chans[i] = ch
mux.go#L45: c.chans = append(c.chans, ch)
mux.go#L46: return uint32(len(c.chans)-1) + c.offset
mux.go#L55: if id < uint32(len(c.chans)) {
mux.go#L56: return c.chans[id]
mux.go#L64: if id < uint32(len(c.chans)) {
mux.go#L65: c.chans[id] = nil
mux.go#L76: for _, ch := range c.chans {
mux.go#L82: c.chans = nil
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |