From owner-cvs-usrsbin Wed Mar 11 18:27:00 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA07967 for cvs-usrsbin-outgoing; Wed, 11 Mar 1998 18:27:00 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA07901; Wed, 11 Mar 1998 18:26:06 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA04794; Wed, 11 Mar 1998 18:23:45 -0800 (PST) Date: Wed, 11 Mar 1998 18:23:45 -0800 (PST) Message-Id: <199803120223.SAA04794@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp command.c hdlc.c lqr.c ppp.8 Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/03/11 18:23:45 PST Modified files: usr.sbin/ppp command.c hdlc.c lqr.c ppp.8 Log: o Fix a few comment typos. o Fix ``set timeout'' usage message and documentation. o Change ifOutPackets, ifOutOctets and ifOutLQRs to `u_int32_t's so that they wrap correctly. o Put the LQR in network byte order using the correct struct size (sizeof u_int32_t, not sizeof u_long). o Wrap LQR ECHO counters correctly. o Don't increment OutLQR count if the last LQR hasn't been replied to. o Initialise HisLqrData (last received LQR) in StartLqm. o Don't start the LQR timer if we're `disabled' and `accepted'. o Generate LQR responses when both sides are using a timer and we're not going to send our next LQR before the peers max timeout. LQR should now be fully functional. Revision Changes Path 1.132 +4 -4 src/usr.sbin/ppp/command.c 1.29 +15 -6 src/usr.sbin/ppp/hdlc.c 1.23 +39 -30 src/usr.sbin/ppp/lqr.c 1.98 +7 -5 src/usr.sbin/ppp/ppp.8