From owner-cvs-usrsbin Fri Apr 3 11:42:11 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA29871 for cvs-usrsbin-outgoing; Fri, 3 Apr 1998 11:27:01 -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 LAA29704; Fri, 3 Apr 1998 11:26:08 -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 LAA05247; Fri, 3 Apr 1998 11:24:11 -0800 (PST) Date: Fri, 3 Apr 1998 11:24:11 -0800 (PST) Message-Id: <199804031924.LAA05247@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp auth.c auth.h ccp.c ccp.h command.c command.h datalink.c defs.h ipcp.c ipcp.h lcp.c lcp.h ppp.8 tun.c vars.c vars.h Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/04/03 11:24:10 PST Modified files: (Branch: MP) usr.sbin/ppp auth.c auth.h ccp.c ccp.h command.c command.h datalink.c defs.h ipcp.c ipcp.h lcp.c lcp.h ppp.8 tun.c vars.c vars.h Log: o Move default MRU, MTU, ACCMAP and OPENMODE config values into struct lcp and display them in `show lcp'. o Remove `show mru' and `show mtu' and make the data part of `show lcp'. Also merge `set m[tr]u' and `set openmode' implementations into the SetVariable function. o `set timeout' only accepts the idle timer value as an argument. o Move our lqr period into struct lcp, and create a `set lqrperiod' command. Display it in `show lcp'. o Remove VarRetryTimeout, and implement it at the LCP, PAP, CHAP, CCP and IPCP levels, creating individual `set XXXretry' commands for each. They must be separate because they have different context requirements in multilink mode. o Display default config values in `show ccp'. o Tart the man page up a bit (wrt PPP/TCP, compression and LQR) and explain the new commands. Revision Changes Path 1.27.2.17 +3 -2 src/usr.sbin/ppp/auth.c 1.10.2.5 +4 -1 src/usr.sbin/ppp/auth.h 1.30.2.30 +18 -6 src/usr.sbin/ppp/ccp.c 1.14.2.15 +2 -1 src/usr.sbin/ppp/ccp.h 1.131.2.45 +151 -134 src/usr.sbin/ppp/command.c 1.12.2.7 +14 -6 src/usr.sbin/ppp/command.h 1.1.2.30 +3 -3 src/usr.sbin/ppp/Attic/datalink.c 1.29.2.9 +3 -1 src/usr.sbin/ppp/defs.h 1.50.2.29 +8 -2 src/usr.sbin/ppp/ipcp.c 1.18.2.18 +2 -1 src/usr.sbin/ppp/ipcp.h 1.55.2.35 +31 -16 src/usr.sbin/ppp/lcp.c 1.16.2.17 +12 -3 src/usr.sbin/ppp/lcp.h 1.97.2.8 +81 -26 src/usr.sbin/ppp/ppp.8 1.6.4.11 +1 -3 src/usr.sbin/ppp/tun.c 1.45.2.19 +3 -3 src/usr.sbin/ppp/vars.c 1.42.2.16 +5 -22 src/usr.sbin/ppp/vars.h