From owner-cvs-all Fri Aug 7 11:42:55 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA25345 for cvs-all-outgoing; Fri, 7 Aug 1998 11:42:55 -0700 (PDT) (envelope-from owner-cvs-all) 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 LAA25339; Fri, 7 Aug 1998 11:42:54 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA20271; Fri, 7 Aug 1998 11:42:52 -0700 (PDT) Date: Fri, 7 Aug 1998 11:42:52 -0700 (PDT) Message-Id: <199808071842.LAA20271@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp Makefile auth.c auth.h bundle.c bundle.h ccp.c chap.c chat.c command.c datalink.c datalink.h deflate.c defs.h hdlc.c ip.c ipcp.c lcp.c lcp.h lcpproto.h link.c log.c log.h lqr.c main.c mbuf.c mbuf.h modem.c mp.c pap.c ... Sender: owner-cvs-all@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/08/07 11:42:52 PDT Modified files: usr.sbin/ppp Makefile auth.c auth.h bundle.c bundle.h ccp.c chap.c chat.c command.c datalink.c datalink.h deflate.c defs.h hdlc.c ip.c ipcp.c lcp.c lcp.h lcpproto.h link.c log.c log.h lqr.c main.c mbuf.c mbuf.h modem.c mp.c pap.c physical.c ppp.8 pred.c prompt.c vjcomp.c Log: o Support callback types NONE, E.164, AUTH and CBCP. (see the new ``set callback'' and ``set cbcp'' commands) o Add a ``cbcp'' log level and mbuf type. o Don't dump core when \T is given in ``set login'' or ``set hangup''. o Allow ``*'' and blanks as placeholders in ppp.secret and allow a fifth field for specifying auth/cbcp dialback parameters. o Remove a few extraneous #includes o Define the default number of REQs (restart counter) in defs.h rather than hardcoding ``5'' all over the place. o Fix a few man page inconsistencies. Revision Changes Path 1.45 +2 -2 src/usr.sbin/ppp/Makefile 1.32 +38 -4 src/usr.sbin/ppp/auth.c 1.12 +3 -2 src/usr.sbin/ppp/auth.h 1.31 +3 -2 src/usr.sbin/ppp/bundle.c 1.12 +2 -1 src/usr.sbin/ppp/bundle.h 1.38 +2 -3 src/usr.sbin/ppp/ccp.c 1.36 +3 -2 src/usr.sbin/ppp/chap.c 1.51 +7 -4 src/usr.sbin/ppp/chat.c 1.159 +59 -2 src/usr.sbin/ppp/command.c 1.17 +167 -18 src/usr.sbin/ppp/datalink.c 1.5 +11 -3 src/usr.sbin/ppp/datalink.h 1.11 +2 -1 src/usr.sbin/ppp/deflate.c 1.35 +2 -1 src/usr.sbin/ppp/defs.h 1.36 +10 -1 src/usr.sbin/ppp/hdlc.c 1.50 +3 -1 src/usr.sbin/ppp/ip.c 1.63 +2 -2 src/usr.sbin/ppp/ipcp.c 1.62 +179 -8 src/usr.sbin/ppp/lcp.c 1.19 +22 -2 src/usr.sbin/ppp/lcp.h 1.12 +2 -1 src/usr.sbin/ppp/lcpproto.h 1.4 +2 -2 src/usr.sbin/ppp/link.c 1.33 +2 -1 src/usr.sbin/ppp/log.c 1.22 +21 -20 src/usr.sbin/ppp/log.h 1.30 +2 -1 src/usr.sbin/ppp/lqr.c 1.141 +2 -1 src/usr.sbin/ppp/main.c 1.19 +5 -5 src/usr.sbin/ppp/mbuf.c 1.13 +10 -9 src/usr.sbin/ppp/mbuf.h 1.97 +3 -2 src/usr.sbin/ppp/modem.c 1.13 +2 -1 src/usr.sbin/ppp/mp.c 1.26 +2 -2 src/usr.sbin/ppp/pap.c 1.5 +4 -3 src/usr.sbin/ppp/physical.c 1.114 +131 -6 src/usr.sbin/ppp/ppp.8 1.22 +2 -1 src/usr.sbin/ppp/pred.c 1.10 +2 -1 src/usr.sbin/ppp/prompt.c 1.22 +1 -2 src/usr.sbin/ppp/vjcomp.c