From owner-cvs-all Fri Jan 30 11:47:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA03894 for cvs-all-outgoing; Fri, 30 Jan 1998 11:47:31 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) 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 LAA03877; Fri, 30 Jan 1998 11:47:29 -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 LAA05045; Fri, 30 Jan 1998 11:46:15 -0800 (PST) Date: Fri, 30 Jan 1998 11:46:15 -0800 (PST) Message-Id: <199801301946.LAA05045@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp link.c link.h Makefile async.c async.h auth.c ccp.c ccp.h chap.c command.c deflate.c filter.c fsm.c fsm.h hdlc.c hdlc.h ip.c ip.h ipcp.c ipcp.h lcp.c lqr.c main.c mbuf.c mbuf.h modem.c modem.h pap.c phase.c physical.c ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-To-Unsubscribe: mail to majordomo@FreeBSD.org "unsubscribe cvs-all" brian 1998/01/30 11:46:15 PST Modified files: (Branch: MP) usr.sbin/ppp Makefile async.c async.h auth.c ccp.c ccp.h chap.c command.c deflate.c filter.c fsm.c fsm.h hdlc.c hdlc.h ip.c ip.h ipcp.c ipcp.h lcp.c lqr.c main.c mbuf.c mbuf.h modem.c modem.h pap.c phase.c physical.c physical.h pred.c route.c vjcomp.c vjcomp.h Added files: (Branch: MP) usr.sbin/ppp link.c link.h Log: Create `struct link' - the logical link from which `struct physical' (and the future `struct logical') are derived. Revision Changes Path 1.36.2.2 +2 -2 src/usr.sbin/ppp/Makefile 1.15.2.2 +8 -5 src/usr.sbin/ppp/async.c 1.2.4.2 +2 -2 src/usr.sbin/ppp/async.h 1.27.2.3 +6 -3 src/usr.sbin/ppp/auth.c 1.30.2.3 +5 -5 src/usr.sbin/ppp/ccp.c 1.14.2.3 +4 -4 src/usr.sbin/ppp/ccp.h 1.28.2.3 +2 -2 src/usr.sbin/ppp/chap.c 1.131.2.3 +5 -4 src/usr.sbin/ppp/command.c 1.6.4.3 +5 -4 src/usr.sbin/ppp/deflate.c 1.22.2.2 +3 -1 src/usr.sbin/ppp/filter.c 1.27.2.2 +14 -8 src/usr.sbin/ppp/fsm.c 1.16.2.2 +4 -4 src/usr.sbin/ppp/fsm.h 1.28.2.3 +49 -69 src/usr.sbin/ppp/hdlc.c 1.14.2.2 +4 -2 src/usr.sbin/ppp/hdlc.h 1.38.2.3 +3 -3 src/usr.sbin/ppp/ip.c 1.8.2.2 +2 -4 src/usr.sbin/ppp/ip.h 1.50.2.3 +8 -6 src/usr.sbin/ppp/ipcp.c 1.18.2.5 +2 -2 src/usr.sbin/ppp/ipcp.h 1.55.2.4 +44 -17 src/usr.sbin/ppp/lcp.c 1.22.2.3 +4 -3 src/usr.sbin/ppp/lqr.c 1.121.2.3 +14 -12 src/usr.sbin/ppp/main.c 1.13.2.1 +33 -1 src/usr.sbin/ppp/mbuf.c 1.11.2.1 +4 -2 src/usr.sbin/ppp/mbuf.h 1.77.2.2 +61 -144 src/usr.sbin/ppp/modem.c 1.16.2.2 +2 -12 src/usr.sbin/ppp/modem.h 1.20.2.3 +3 -3 src/usr.sbin/ppp/pap.c 1.6.4.4 +9 -1 src/usr.sbin/ppp/phase.c 1.1.2.2 +2 -6 src/usr.sbin/ppp/Attic/physical.c 1.1.2.2 +25 -28 src/usr.sbin/ppp/Attic/physical.h 1.20.2.2 +5 -4 src/usr.sbin/ppp/pred.c 1.42.2.2 +3 -1 src/usr.sbin/ppp/route.c 1.16.2.3 +3 -3 src/usr.sbin/ppp/vjcomp.c 1.5.4.2 +2 -4 src/usr.sbin/ppp/vjcomp.h