// RequestAgentForwarding sets up agent forwarding for the session. // ForwardToAgent or ForwardToRemote should be called to route // the authentication requests. func RequestAgentForwarding(session *ssh.Session) error { ok, err := session.SendRequest("*****@*****.**", true, nil) if err != nil { return err } if !ok { return errors.New("forwarding request denied") } return nil }
}) Context("when a window change request is received", func() { type winChangeMsg struct { Columns uint32 Rows uint32 WidthPx uint32 HeightPx uint32 } var result []byte Context("before a pty is allocated", func() { BeforeEach(func() { _, err := session.SendRequest("window-change", false, ssh.Marshal(winChangeMsg{ Rows: 50, Columns: 132, })) Expect(err).NotTo(HaveOccurred()) err = session.RequestPty("vt100", 43, 80, ssh.TerminalModes{}) Expect(err).NotTo(HaveOccurred()) result, err = session.Output("stty size") Expect(err).NotTo(HaveOccurred()) }) It("ignores the request", func() { Expect(result).To(ContainSubstring("43 80")) }) })