From owner-cvs-usrsbin Mon Feb 2 11:32:47 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA21251 for cvs-usrsbin-outgoing; Mon, 2 Feb 1998 11:32:47 -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 LAA21200; Mon, 2 Feb 1998 11:32:38 -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 LAA27156; Mon, 2 Feb 1998 11:32:20 -0800 (PST) Date: Mon, 2 Feb 1998 11:32:20 -0800 (PST) Message-Id: <199802021932.LAA27156@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c bundle.h Makefile async.c async.h auth.c auth.h ccp.c ccp.h chap.c chap.h command.c command.h defs.c fsm.c fsm.h hdlc.c hdlc.h ip.c ip.h ipcp.c ipcp.h lcp.c lcp.h main.c main.h modem.c modem.h pap.c pap.h phase.c ... Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/02 11:32:20 PST Modified files: (Branch: MP) usr.sbin/ppp Makefile async.c async.h auth.c auth.h ccp.c ccp.h chap.c chap.h command.c command.h defs.c fsm.c fsm.h hdlc.c hdlc.h ip.c ip.h ipcp.c ipcp.h lcp.c lcp.h main.c main.h modem.c modem.h pap.c pap.h phase.c phase.h route.c route.h server.c systems.c systems.h tun.c tun.h vars.c Added files: (Branch: MP) usr.sbin/ppp bundle.c bundle.h Removed files: (Branch: MP) usr.sbin/ppp os.c os.h Log: Create `struct bundle' - the top level control structure. This structure will eventually contain a list of NCPs (currently only IPCP is supported) and a list of physical `struct link's. It will also derive from a struct link itself. Make ModemTimeout() static - it's way to dangerous to be called from outside ! Bump version to 1.9. Our first MP release should be 2.0. Revision Changes Path 1.36.2.3 +3 -3 src/usr.sbin/ppp/Makefile 1.15.2.3 +5 -4 src/usr.sbin/ppp/async.c 1.2.4.3 +2 -2 src/usr.sbin/ppp/async.h 1.27.2.4 +11 -11 src/usr.sbin/ppp/auth.c 1.10.2.2 +5 -5 src/usr.sbin/ppp/auth.h 1.30.2.5 +7 -6 src/usr.sbin/ppp/ccp.c 1.14.2.5 +2 -2 src/usr.sbin/ppp/ccp.h 1.28.2.5 +10 -9 src/usr.sbin/ppp/chap.c 1.9.2.2 +2 -2 src/usr.sbin/ppp/chap.h 1.131.2.5 +30 -25 src/usr.sbin/ppp/command.c 1.12.2.1 +4 -3 src/usr.sbin/ppp/command.h 1.11.4.2 +1 -3 src/usr.sbin/ppp/defs.c 1.27.2.4 +18 -23 src/usr.sbin/ppp/fsm.c 1.16.2.4 +8 -4 src/usr.sbin/ppp/fsm.h 1.28.2.5 +8 -7 src/usr.sbin/ppp/hdlc.c 1.14.2.3 +2 -2 src/usr.sbin/ppp/hdlc.h 1.38.2.5 +9 -9 src/usr.sbin/ppp/ip.c 1.8.2.3 +3 -3 src/usr.sbin/ppp/ip.h 1.50.2.5 +20 -16 src/usr.sbin/ppp/ipcp.c 1.18.2.7 +3 -3 src/usr.sbin/ppp/ipcp.h 1.55.2.6 +18 -15 src/usr.sbin/ppp/lcp.c 1.16.2.4 +2 -2 src/usr.sbin/ppp/lcp.h 1.121.2.5 +44 -40 src/usr.sbin/ppp/main.c 1.9.2.1 +2 -2 src/usr.sbin/ppp/main.h 1.77.2.3 +39 -26 src/usr.sbin/ppp/modem.c 1.16.2.3 +3 -4 src/usr.sbin/ppp/modem.h 1.20.2.5 +8 -7 src/usr.sbin/ppp/pap.c 1.5.2.2 +2 -2 src/usr.sbin/ppp/pap.h 1.6.4.6 +4 -4 src/usr.sbin/ppp/phase.c 1.9.2.2 +2 -2 src/usr.sbin/ppp/phase.h 1.42.2.4 +9 -133 src/usr.sbin/ppp/route.c 1.10.2.1 +3 -4 src/usr.sbin/ppp/route.h 1.16.2.1 +3 -3 src/usr.sbin/ppp/server.c 1.35.2.1 +16 -9 src/usr.sbin/ppp/systems.c 1.10.2.1 +2 -2 src/usr.sbin/ppp/systems.h 1.6.4.1 +4 -3 src/usr.sbin/ppp/tun.c 1.3.4.1 +2 -2 src/usr.sbin/ppp/tun.h 1.45.2.2 +3 -3 src/usr.sbin/ppp/vars.c