Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Feb 2001 00:28:05 -0500 (EST)
From:      Mikhail Kruk <meshko@cs.brandeis.edu>
To:        Dominick LaTrappe <seraf@2600.COM>
Cc:        <security@FreeBSD.ORG>
Subject:   Re: OpenSSH 2.3.0 "tvp" messages
Message-ID:  <Pine.LNX.4.30.0102200026050.17765-100000@daedalus.cs.brandeis.edu>
In-Reply-To: <Pine.NEB.4.21.0102192356130.25526-100000@phalse.2600.com>

next in thread | previous in thread | raw e-mail | index | archive | help
As far as I can tell it's a normal condition which should happen alot.

       if (child_terminated && packet_not_very_much_data_to_write())
		if (max_time_milliseconds == 0)
			max_time_milliseconds = 100;

	if (max_time_milliseconds == 0)
		tvp = NULL;
	else {
		tv.tv_sec = max_time_milliseconds / 1000;
		tv.tv_usec = 1000 * (max_time_milliseconds % 1000);
		tvp = &tv;
	}
	if (tvp!=NULL)
		debug("tvp!=NULL kid %d mili %d", child_terminated, max_time_milliseconds);

	/* Wait for something to happen, or the timeout to expire. */
	ret = select(max_fd + 1, readset, writeset, NULL, tvp);


On Tue, 20 Feb 2001, Dominick LaTrappe wrote:

> I run several machines on FreeBSD 4.2-STABLE, with the base system's
> OpenSSH 2.3.0 on "LogLevel DEBUG".  I get a lot of messages in syslog like
> these:
>
> 		debug1: tvp!=NULL kid 0 mili 10
> 		debug1: tvp!=NULL kid 1 mili 10
> 		debug1: tvp!=NULL kid 1 mili 100
>
> These come from both the SSH daemons and the per-session children, and
> come in bursts.  Can anyone tell me if this should be cause for concern?
>
> Thanks all,
>
> 	||| Dominick
>
>
>
> To Unsubscribe: send mail to majordomo@FreeBSD.org
> with "unsubscribe freebsd-security" in the body of the message
>



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-security" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.LNX.4.30.0102200026050.17765-100000>