search for: sshpkt_put_u8

Displaying 4 results from an estimated 4 matches for "sshpkt_put_u8".

Did you mean: sshpkt_put_u32
2017 Oct 13
2
X11forwarding yes: how to debug/setup after xauth fix
...sh_packet_send_debug(struct ssh *ssh, const char *fmt,...) > vsnprintf(buf, sizeof(buf), fmt, args); > va_end(args); > > + debug3("sending debug message: %s", buf); > + Will also try this! > if ((r = sshpkt_start(ssh, SSH2_MSG_DEBUG)) != 0 || > (r = sshpkt_put_u8(ssh, 0)) != 0 || /* always display */ > (r = sshpkt_put_cstring(ssh, buf)) != 0 || > _______________________________________________ > openssh-unix-dev mailing list > openssh-unix-dev at mindrot.org > https://lists.mindrot.org/mailman/listinfo/openssh-unix-dev
2017 Oct 12
2
X11forwarding yes: how to debug/setup after xauth fix
On 08/10/2017 23:32, Michael Felt wrote: > On 04/10/2017 11:07, Michael Felt wrote: >> I do not often use X11 - but when I do I prefer to enable >> X11forwarding, and when finished - turn it off. This is preferable, >> imho, to having "clear" X11 processing when local - and otherwise >> impossible when working remote. >> >> Working with
2019 Mar 29
2
Call for testing: OpenSSH 8.0
...d); + debug2("%s: xauth command: %s", __func__, cmd); if (timeout != 0 && x11_refuse_time == 0) { now = monotime() + 1; @@ -492,7 +492,7 @@ server_alive_check(struct ssh *ssh) (r = sshpkt_put_cstring(ssh, "keepalive at openssh.com")) != 0 || (r = sshpkt_put_u8(ssh, 1)) != 0 || /* boolean: want reply */ (r = sshpkt_send(ssh)) != 0) - fatal("%s: %s", __func__, ssh_err(r)); + fatal("%s: send packet: %s", __func__, ssh_err(r)); /* Insert an empty placeholder to maintain ordering */ client_register_global_confirm(NULL, NULL);...
2019 Mar 27
26
Call for testing: OpenSSH 8.0
Hi, OpenSSH 8.0p1 is almost ready for release, so we would appreciate testing on as many platforms and systems as possible. Snapshot releases for portable OpenSSH are available from http://www.mindrot.org/openssh_snap/ The OpenBSD version is available in CVS HEAD: http://www.openbsd.org/anoncvs.html Portable OpenSSH is also available via git using the instructions at