[PATCH] Add a Maximum Idle Time (1.2.2)

Markus Friedl markus.friedl at informatik.uni-erlangen.de
Mon Mar 6 18:50:06 EST 2000


the patch looks reasonable, but SSH_MSG_NONE type packets
must not travel over the wire. this violates the protocol spec.

On Fri, Mar 03, 2000 at 01:33:40PM -0800, Jacob Luna Lundberg wrote:
> +			packet_start(SSH_MSG_NONE);
> +			packet_send();

SSH_MSG_IGNORE should be used, e.g.:

	packet_start(SSH_MSG_IGNORE);
	packet_put_string("bla", 3);
	packet_send();

-markus





More information about the openssh-unix-dev mailing list