Lines Matching refs:ssh
12 * called by a name other than "ssh" or "Secure Shell".
92 #include "ssh.h"
351 * ssh's willingness to forward X11 connections to
950 logit("Not supported for SSH protocol version 1.");
1027 {"^Z", "suspend ssh", SUPPRESS_MUXCLIENT},
1029 {"&", "background ssh (when waiting for connections to terminate)",
1144 "%c^Z [suspend ssh]\r\n", escape_char);
1901 error("Warning: ssh server tried X11 forwarding.");
1940 error("Warning: ssh server tried agent forwarding.");
2256 struct ssh *ssh = active_state; /* XXX */
2275 if (ssh->kex->session_id_len == 0)
2276 fatal("%s: ssh->kex->session_id_len == 0", __func__);
2289 (r = sshbuf_put_string(signdata, ssh->kex->session_id,
2290 ssh->kex->session_id_len)) != 0 ||
2295 if ((r = sshpkt_get_string_direct(ssh, &sig, &siglen)) != 0) {
2313 ssh_packet_check_eom(ssh);
2329 struct ssh *ssh = active_state; /* XXX */
2336 static int hostkeys_seen = 0; /* XXX use struct ssh */
2337 extern struct sockaddr_storage hostaddr; /* XXX from ssh.c */
2349 while (ssh_packet_remaining(ssh) > 0) {
2352 if ((r = sshpkt_get_string_direct(ssh, &blob, &len)) != 0) {
2441 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
2442 (r = sshpkt_put_cstring(ssh,
2444 (r = sshpkt_put_u8(ssh, 1)) != 0) /* bool: want reply */
2456 if ((r = sshpkt_put_stringb(ssh, buf)) != 0)
2460 if ((r = sshpkt_send(ssh)) != 0)