golang.org/x/crypto/ssh.Session.ch (field)
19 uses
golang.org/x/crypto/ssh (current package)
session.go#L133: ch Channel // the channel backing this session
session.go#L152: return s.ch.SendRequest(name, wantReply, payload)
session.go#L156: return s.ch.Close()
session.go#L172: ok, err := s.ch.SendRequest("env", true, Marshal(&msg))
session.go#L209: ok, err := s.ch.SendRequest("pty-req", true, Marshal(&req))
session.go#L227: ok, err := s.ch.SendRequest("subsystem", true, Marshal(&msg))
session.go#L250: _, err := s.ch.SendRequest("window-change", false, Marshal(&req))
session.go#L266: _, err := s.ch.SendRequest("signal", false, Marshal(&msg))
session.go#L286: ok, err := s.ch.SendRequest("exec", true, Marshal(&req))
session.go#L362: ok, err := s.ch.SendRequest("shell", true, nil)
session.go#L495: _, err := io.Copy(s.ch, stdin)
session.go#L496: if err1 := s.ch.CloseWrite(); err == nil && err1 != io.EOF {
session.go#L511: _, err := io.Copy(s.Stdout, s.ch)
session.go#L524: _, err := io.Copy(s.Stderr, s.ch.Stderr())
session.go#L549: return &sessionStdin{s.ch, s.ch}, nil
session.go#L566: return s.ch, nil
session.go#L583: return s.ch.Stderr(), nil
session.go#L589: ch: ch,
 |
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. |