From owner-cvs-usrsbin Sun Feb 22 16:41:13 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA12435 for cvs-usrsbin-outgoing; Sun, 22 Feb 1998 16:41:13 -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 QAA12116; Sun, 22 Feb 1998 16:38:49 -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 QAA02436; Sun, 22 Feb 1998 16:38:48 -0800 (PST) Date: Sun, 22 Feb 1998 16:38:48 -0800 (PST) Message-Id: <199802230038.QAA02436@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 ccp.c ccp.h chat.c command.c datalink.c datalink.h deflate.c descriptor.h fsm.c hdlc.c ip.c ip.h link.c link.h main.c modem.c modem.h physical.c physical.h ppp.8 pred.c prompt.c server.c vjcomp.c vjcomp.h Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/22 16:38:47 PST Modified files: (Branch: MP) usr.sbin/ppp bundle.c ccp.c ccp.h chat.c command.c datalink.c datalink.h deflate.c descriptor.h fsm.c hdlc.c ip.c ip.h link.c link.h main.c modem.c modem.h physical.c physical.h ppp.8 pred.c prompt.c server.c vjcomp.c vjcomp.h Log: o Remove the global CcpInfo. It's now part of the datalink. Struct bundle will have its own struct ccp in the future too. o The ``set stopped'' command now requires context and doesn't work on the IPCP FSM. o Check if it's time to break out of our top level loop before doing a select - otherwise, we'll select forever :-( o Remove `struct link'::ccp (a temporary hack). It turns out that IpStartOutput() calls link_Output() and link_Output() incorrectly calls StartOutput() (really modem_StartOutput) requiring the ccp knowledge so that it can call IpStartOutput()... The end result is that the whole IP output queue gets dumped into the modem output queue and a pile of physical writes are done prematurely. This makes the (original) code in main() actually work in that it would not bother selecting() on the tun descriptor when our modem queue length was 20 or greater. Instead, we now make that decision based on the overall queue length. This will need improvement later. Revision Changes Path 1.1.2.16 +22 -9 src/usr.sbin/ppp/Attic/bundle.c 1.30.2.13 +24 -24 src/usr.sbin/ppp/ccp.c 1.14.2.11 +7 -9 src/usr.sbin/ppp/ccp.h 1.44.2.11 +2 -2 src/usr.sbin/ppp/chat.c 1.131.2.29 +11 -22 src/usr.sbin/ppp/command.c 1.1.2.13 +12 -12 src/usr.sbin/ppp/Attic/datalink.c 1.1.2.8 +2 -2 src/usr.sbin/ppp/Attic/datalink.h 1.6.4.6 +17 -16 src/usr.sbin/ppp/deflate.c 1.1.2.7 +3 -3 src/usr.sbin/ppp/Attic/descriptor.h 1.27.2.14 +2 -2 src/usr.sbin/ppp/fsm.c 1.28.2.14 +2 -5 src/usr.sbin/ppp/hdlc.c 1.38.2.8 +9 -14 src/usr.sbin/ppp/ip.c 1.8.2.4 +3 -2 src/usr.sbin/ppp/ip.h 1.1.2.8 +3 -4 src/usr.sbin/ppp/Attic/link.c 1.1.2.6 +3 -5 src/usr.sbin/ppp/Attic/link.h 1.121.2.28 +16 -25 src/usr.sbin/ppp/main.c 1.77.2.25 +6 -6 src/usr.sbin/ppp/modem.c 1.16.2.10 +2 -2 src/usr.sbin/ppp/modem.h 1.1.2.12 +4 -3 src/usr.sbin/ppp/Attic/physical.c 1.1.2.12 +3 -2 src/usr.sbin/ppp/Attic/physical.h 1.97.2.1 +7 -7 src/usr.sbin/ppp/ppp.8 1.20.2.4 +13 -12 src/usr.sbin/ppp/pred.c 1.1.2.8 +5 -3 src/usr.sbin/ppp/Attic/prompt.c 1.16.2.8 +2 -2 src/usr.sbin/ppp/server.c 1.16.2.5 +10 -3 src/usr.sbin/ppp/vjcomp.c 1.5.4.3 +2 -2 src/usr.sbin/ppp/vjcomp.h From owner-cvs-usrsbin Mon Feb 23 01:13:34 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA15207 for cvs-usrsbin-outgoing; Mon, 23 Feb 1998 01:13:34 -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 BAA15129; Mon, 23 Feb 1998 01:13:24 -0800 (PST) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA04862; Mon, 23 Feb 1998 01:13:15 -0800 (PST) Date: Mon, 23 Feb 1998 01:13:15 -0800 (PST) Message-Id: <199802230913.BAA04862@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/lpr/filters.ru Makefile Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk ache 1998/02/23 01:13:15 PST Modified files: usr.sbin/lpr/filters.ru Makefile Log: Add missing DESTDIR Revision Changes Path 1.2 +1 -1 src/usr.sbin/lpr/filters.ru/Makefile From owner-cvs-usrsbin Mon Feb 23 01:15:12 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA15623 for cvs-usrsbin-outgoing; Mon, 23 Feb 1998 01:15:12 -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 BAA15584; Mon, 23 Feb 1998 01:15:07 -0800 (PST) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA04927; Mon, 23 Feb 1998 01:15:02 -0800 (PST) Date: Mon, 23 Feb 1998 01:15:02 -0800 (PST) Message-Id: <199802230915.BAA04927@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/lpr/filters.ru Makefile Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk ache 1998/02/23 01:15:02 PST Modified files: (Branch: RELENG_2_2) usr.sbin/lpr/filters.ru Makefile Log: Add missing DESTDIR Revision Changes Path 1.1.2.2 +1 -1 src/usr.sbin/lpr/filters.ru/Makefile From owner-cvs-usrsbin Mon Feb 23 17:12:16 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA06524 for cvs-usrsbin-outgoing; Mon, 23 Feb 1998 17:12:16 -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 RAA06330; Mon, 23 Feb 1998 17:11:57 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA01806; Mon, 23 Feb 1998 17:11:47 -0800 (PST) Date: Mon, 23 Feb 1998 17:11:47 -0800 (PST) Message-Id: <199802240111.RAA01806@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/mptable mptable.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 1998/02/23 17:11:47 PST Modified files: usr.sbin/mptable mptable.c Log: Don't #include implementation header directly. #include before the headers that depend on it. Revision Changes Path 1.10 +2 -5 src/usr.sbin/mptable/mptable.c From owner-cvs-usrsbin Mon Feb 23 19:37:24 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA28700 for cvs-usrsbin-outgoing; Mon, 23 Feb 1998 19:37:24 -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 TAA28642; Mon, 23 Feb 1998 19:37:03 -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 TAA02433; Mon, 23 Feb 1998 19:36:52 -0800 (PST) Date: Mon, 23 Feb 1998 19:36:52 -0800 (PST) Message-Id: <199802240336.TAA02433@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp ccp.c fsm.c fsm.h ipcp.c lcp.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/23 19:36:52 PST Modified files: (Branch: MP) usr.sbin/ppp ccp.c fsm.c fsm.h ipcp.c lcp.c Log: Move our Layer*() FSM callbacks into their own structure. Revision Changes Path 1.30.2.14 +7 -5 src/usr.sbin/ppp/ccp.c 1.27.2.15 +21 -21 src/usr.sbin/ppp/fsm.c 1.16.2.8 +6 -2 src/usr.sbin/ppp/fsm.h 1.50.2.16 +7 -5 src/usr.sbin/ppp/ipcp.c 1.55.2.20 +7 -5 src/usr.sbin/ppp/lcp.c From owner-cvs-usrsbin Tue Feb 24 02:16:04 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA11056 for cvs-usrsbin-outgoing; Tue, 24 Feb 1998 02:16:04 -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 CAA10989; Tue, 24 Feb 1998 02:15:48 -0800 (PST) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA03564; Tue, 24 Feb 1998 02:15:35 -0800 (PST) Date: Tue, 24 Feb 1998 02:15:35 -0800 (PST) Message-Id: <199802241015.CAA03564@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/lpr/filters.ru Makefile Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk ache 1998/02/24 02:15:34 PST Modified files: usr.sbin/lpr/filters.ru Makefile Log: Oops, back out DESTDIR addition, handled automatically by bsd.prog.mk Revision Changes Path 1.3 +1 -1 src/usr.sbin/lpr/filters.ru/Makefile From owner-cvs-usrsbin Tue Feb 24 02:24:44 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA12274 for cvs-usrsbin-outgoing; Tue, 24 Feb 1998 02:24:44 -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 CAA12196; Tue, 24 Feb 1998 02:24:37 -0800 (PST) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA03622; Tue, 24 Feb 1998 02:24:24 -0800 (PST) Date: Tue, 24 Feb 1998 02:24:24 -0800 (PST) Message-Id: <199802241024.CAA03622@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/lpr/filters.ru Makefile Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk ache 1998/02/24 02:24:24 PST Modified files: usr.sbin/lpr/filters.ru Makefile Log: Add DESTDIR to afterinstall Submitted by: jhay Revision Changes Path 1.4 +1 -1 src/usr.sbin/lpr/filters.ru/Makefile From owner-cvs-usrsbin Tue Feb 24 02:26:05 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA12731 for cvs-usrsbin-outgoing; Tue, 24 Feb 1998 02:26:05 -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 CAA12632; Tue, 24 Feb 1998 02:25:58 -0800 (PST) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA03658; Tue, 24 Feb 1998 02:25:45 -0800 (PST) Date: Tue, 24 Feb 1998 02:25:45 -0800 (PST) Message-Id: <199802241025.CAA03658@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/lpr/filters.ru Makefile Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk ache 1998/02/24 02:25:44 PST Modified files: (Branch: RELENG_2_2) usr.sbin/lpr/filters.ru Makefile Log: MFC: DESTDIR tweaks Revision Changes Path 1.1.2.3 +2 -2 src/usr.sbin/lpr/filters.ru/Makefile From owner-cvs-usrsbin Tue Feb 24 13:55:48 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA18693 for cvs-usrsbin-outgoing; Tue, 24 Feb 1998 13:55:48 -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 NAA18640; Tue, 24 Feb 1998 13:55:33 -0800 (PST) (envelope-from pst@FreeBSD.org) From: Paul Traina Received: (from pst@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA29210; Tue, 24 Feb 1998 13:55:16 -0800 (PST) Date: Tue, 24 Feb 1998 13:55:16 -0800 (PST) Message-Id: <199802242155.NAA29210@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/inetd inetd.8 inetd.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk pst 1998/02/24 13:55:15 PST Modified files: usr.sbin/inetd inetd.8 inetd.c Log: Make maxchild and max child-per-minute default values configurable from the command line or Makefile. Revision Changes Path 1.18 +13 -2 src/usr.sbin/inetd/inetd.8 1.30 +49 -18 src/usr.sbin/inetd/inetd.c From owner-cvs-usrsbin Thu Feb 26 06:36:51 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA26154 for cvs-usrsbin-outgoing; Thu, 26 Feb 1998 06:36:51 -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 GAA26081; Thu, 26 Feb 1998 06:36:34 -0800 (PST) (envelope-from hosokawa@FreeBSD.org) From: Tatsumi Hosokawa Received: (from hosokawa@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA04075; Thu, 26 Feb 1998 06:36:03 -0800 (PST) Date: Thu, 26 Feb 1998 06:36:03 -0800 (PST) Message-Id: <199802261436.GAA04075@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pccard/pccardc rdattr.c Makefile pccardc.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk hosokawa 1998/02/26 06:36:02 PST Modified files: usr.sbin/pccard/pccardc Makefile pccardc.c Added files: usr.sbin/pccard/pccardc rdattr.c Log: added "rdattr" (read attribute memory) function. Revision Changes Path 1.7 +2 -2 src/usr.sbin/pccard/pccardc/Makefile 1.7 +3 -1 src/usr.sbin/pccard/pccardc/pccardc.c From owner-cvs-usrsbin Thu Feb 26 09:54:12 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA23198 for cvs-usrsbin-outgoing; Thu, 26 Feb 1998 09:54:12 -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 JAA23091; Thu, 26 Feb 1998 09:53:50 -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 JAA26863; Thu, 26 Feb 1998 09:53:18 -0800 (PST) Date: Thu, 26 Feb 1998 09:53:18 -0800 (PST) Message-Id: <199802261753.JAA26863@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp datalink.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/26 09:53:17 PST Modified files: (Branch: MP) usr.sbin/ppp datalink.c Log: Don't enter DATALINK_HANGUP state if we're currently in DATALINK_OPENING.... we'll hang there forever with no open device. Revision Changes Path 1.1.2.14 +2 -2 src/usr.sbin/ppp/Attic/datalink.c From owner-cvs-usrsbin Thu Feb 26 09:55:32 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA23375 for cvs-usrsbin-outgoing; Thu, 26 Feb 1998 09:55:32 -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 JAA23327; Thu, 26 Feb 1998 09:55:18 -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 JAA26901; Thu, 26 Feb 1998 09:54:46 -0800 (PST) Date: Thu, 26 Feb 1998 09:54:46 -0800 (PST) Message-Id: <199802261754.JAA26901@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp chat.c chat.h Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/26 09:54:45 PST Modified files: (Branch: MP) usr.sbin/ppp chat.c chat.h Log: Implement ABORT strings. Revision Changes Path 1.44.2.12 +90 -34 src/usr.sbin/ppp/chat.c 1.9.2.3 +15 -7 src/usr.sbin/ppp/chat.h From owner-cvs-usrsbin Thu Feb 26 17:23:59 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA14641 for cvs-usrsbin-outgoing; Thu, 26 Feb 1998 17:23:59 -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 RAA14560; Thu, 26 Feb 1998 17:23:18 -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 RAA28197; Thu, 26 Feb 1998 17:22:43 -0800 (PST) Date: Thu, 26 Feb 1998 17:22:43 -0800 (PST) Message-Id: <199802270122.RAA28197@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp arp.c bundle.c bundle.h ccp.c ccp.h datalink.c datalink.h fsm.c fsm.h ipcp.c ipcp.h lcp.c lcp.h link.c prompt.c route.c tun.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/26 17:22:43 PST Modified files: (Branch: MP) usr.sbin/ppp arp.c bundle.c bundle.h ccp.c ccp.h datalink.c datalink.h fsm.c fsm.h ipcp.c ipcp.h lcp.c lcp.h link.c prompt.c route.c tun.c Log: Create struct fsm_parent. FSMs are created with one of these, and the FSM passes subsequent events to them. The datalink now hides its CCP from the bundle layer. Revision Changes Path 1.27.2.5 +2 -2 src/usr.sbin/ppp/arp.c 1.1.2.17 +60 -69 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.11 +2 -6 src/usr.sbin/ppp/Attic/bundle.h 1.30.2.15 +8 -39 src/usr.sbin/ppp/ccp.c 1.14.2.12 +3 -4 src/usr.sbin/ppp/ccp.h 1.1.2.15 +60 -5 src/usr.sbin/ppp/Attic/datalink.c 1.1.2.9 +9 -6 src/usr.sbin/ppp/Attic/datalink.h 1.27.2.16 +43 -42 src/usr.sbin/ppp/fsm.c 1.16.2.9 +13 -7 src/usr.sbin/ppp/fsm.h 1.50.2.17 +8 -24 src/usr.sbin/ppp/ipcp.c 1.18.2.14 +3 -4 src/usr.sbin/ppp/ipcp.h 1.55.2.21 +9 -26 src/usr.sbin/ppp/lcp.c 1.16.2.12 +3 -2 src/usr.sbin/ppp/lcp.h 1.1.2.9 +2 -1 src/usr.sbin/ppp/Attic/link.c 1.1.2.9 +2 -2 src/usr.sbin/ppp/Attic/prompt.c 1.42.2.8 +2 -2 src/usr.sbin/ppp/route.c 1.6.4.3 +2 -1 src/usr.sbin/ppp/tun.c From owner-cvs-usrsbin Thu Feb 26 21:14:07 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA19164 for cvs-usrsbin-outgoing; Thu, 26 Feb 1998 21:14:07 -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 VAA18967; Thu, 26 Feb 1998 21:13:26 -0800 (PST) (envelope-from nate@FreeBSD.org) From: Nate Williams Received: (from nate@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA00750; Thu, 26 Feb 1998 21:12:50 -0800 (PST) Date: Thu, 26 Feb 1998 21:12:50 -0800 (PST) Message-Id: <199802270512.VAA00750@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pccard/pccardc rdattr.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk nate 1998/02/26 21:12:49 PST Modified files: usr.sbin/pccard/pccardc rdattr.c Log: - doesn't exist in -current, so use the include file . I don't know if this will compile, but at least it's using an include file that exists. Forgotten by: hosokawa Revision Changes Path 1.2 +1 -1 src/usr.sbin/pccard/pccardc/rdattr.c From owner-cvs-usrsbin Thu Feb 26 23:28:23 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA12093 for cvs-usrsbin-outgoing; Thu, 26 Feb 1998 23:28:23 -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 XAA12055; Thu, 26 Feb 1998 23:28:04 -0800 (PST) (envelope-from hosokawa@FreeBSD.org) From: Tatsumi Hosokawa Received: (from hosokawa@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA01478; Thu, 26 Feb 1998 23:27:28 -0800 (PST) Date: Thu, 26 Feb 1998 23:27:28 -0800 (PST) Message-Id: <199802270727.XAA01478@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pccard/pccardc rdattr.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk hosokawa 1998/02/26 23:27:28 PST Modified files: usr.sbin/pccard/pccardc rdattr.c Log: "pccardc dumpcis" does not need write permission of /dev/card?. Revision Changes Path 1.3 +1 -1 src/usr.sbin/pccard/pccardc/rdattr.c From owner-cvs-usrsbin Thu Feb 26 23:46:48 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA14036 for cvs-usrsbin-outgoing; Thu, 26 Feb 1998 23:46:48 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from afs.ntc.mita.keio.ac.jp (afs.ntc.mita.keio.ac.jp [131.113.212.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA13848; Thu, 26 Feb 1998 23:43:55 -0800 (PST) (envelope-from hosokawa@ntc.keio.ac.jp) Received: (from hosokawa@localhost) by afs.ntc.mita.keio.ac.jp (8.8.8+2.7Wbeta7/3.6Wbeta6-ntc_mailserver1.03) id QAA13739; Fri, 27 Feb 1998 16:43:40 +0900 (JST) Date: Fri, 27 Feb 1998 16:43:40 +0900 (JST) Message-Id: <199802270743.QAA13739@afs.ntc.mita.keio.ac.jp> To: nate@FreeBSD.ORG Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG, hosokawa@ntc.keio.ac.jp Subject: Re: cvs commit: src/usr.sbin/pccard/pccardc rdattr.c In-Reply-To: Your message of "Thu, 26 Feb 1998 21:12:50 -0800 (PST)". <199802270512.VAA00750@freefall.freebsd.org> From: hosokawa@ntc.keio.ac.jp (HOSOKAWA Tatsumi) X-Mailer: mnews [version 1.20] 1996-12/08(Sun) Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk In article <199802270512.VAA00750@freefall.freebsd.org> nate@FreeBSD.ORG writes: >> - doesn't exist in -current, so use the include file >> . I don't know if this will compile, but at least >> it's using an include file that exists. Sorry. I upgraded my test machine from 2.2.5. I removed all old *.h files from here. -- HOSOKAWA, Tatsumi Network Technology Center Keio University hosokawa@ntc.keio.ac.jp From owner-cvs-usrsbin Fri Feb 27 00:01:15 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA15878 for cvs-usrsbin-outgoing; Fri, 27 Feb 1998 00:01:15 -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 AAA15825; Fri, 27 Feb 1998 00:00:58 -0800 (PST) (envelope-from hosokawa@FreeBSD.org) From: Tatsumi Hosokawa Received: (from hosokawa@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA01689; Fri, 27 Feb 1998 00:00:20 -0800 (PST) Date: Fri, 27 Feb 1998 00:00:20 -0800 (PST) Message-Id: <199802270800.AAA01689@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pccard/pccardc rdattr.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk hosokawa 1998/02/27 00:00:20 PST Modified files: usr.sbin/pccard/pccardc rdattr.c Log: Removed unused #include and unneccesary comments. Revision Changes Path 1.4 +0 -7 src/usr.sbin/pccard/pccardc/rdattr.c From owner-cvs-usrsbin Fri Feb 27 00:20:10 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA17519 for cvs-usrsbin-outgoing; Fri, 27 Feb 1998 00:20:10 -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 AAA17483; Fri, 27 Feb 1998 00:20:03 -0800 (PST) (envelope-from hosokawa@FreeBSD.org) From: Tatsumi Hosokawa Received: (from hosokawa@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA01853; Fri, 27 Feb 1998 00:19:26 -0800 (PST) Date: Fri, 27 Feb 1998 00:19:26 -0800 (PST) Message-Id: <199802270819.AAA01853@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pccard/pccardd pccardd.c Makefile cardd.c cardd.h Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk hosokawa 1998/02/27 00:19:26 PST Modified files: usr.sbin/pccard/pccardd Makefile cardd.c cardd.h Added files: usr.sbin/pccard/pccardd pccardd.c Log: Moved main() to a new file (pccardd.c). Revision Changes Path 1.4 +1 -1 src/usr.sbin/pccard/pccardd/Makefile 1.25 +2 -75 src/usr.sbin/pccard/pccardd/cardd.c 1.11 +6 -1 src/usr.sbin/pccard/pccardd/cardd.h From owner-cvs-usrsbin Fri Feb 27 00:41:39 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA19604 for cvs-usrsbin-outgoing; Fri, 27 Feb 1998 00:41:39 -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 AAA19557; Fri, 27 Feb 1998 00:41:31 -0800 (PST) (envelope-from hosokawa@FreeBSD.org) From: Tatsumi Hosokawa Received: (from hosokawa@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA02027; Fri, 27 Feb 1998 00:40:54 -0800 (PST) Date: Fri, 27 Feb 1998 00:40:54 -0800 (PST) Message-Id: <199802270840.AAA02027@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pccard/pccardd cardd.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk hosokawa 1998/02/27 00:40:54 PST Modified files: usr.sbin/pccard/pccardd cardd.c Log: Removed "#define EXTERN" because this file doesn't have main(). Revision Changes Path 1.26 +1 -2 src/usr.sbin/pccard/pccardd/cardd.c From owner-cvs-usrsbin Fri Feb 27 01:48:22 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA27003 for cvs-usrsbin-outgoing; Fri, 27 Feb 1998 01:48:22 -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 BAA26954; Fri, 27 Feb 1998 01:48:15 -0800 (PST) (envelope-from hosokawa@FreeBSD.org) From: Tatsumi Hosokawa Received: (from hosokawa@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA02350; Fri, 27 Feb 1998 01:47:38 -0800 (PST) Date: Fri, 27 Feb 1998 01:47:38 -0800 (PST) Message-Id: <199802270947.BAA02350@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pccard/pccardd cardd.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk hosokawa 1998/02/27 01:47:38 PST Modified files: usr.sbin/pccard/pccardd cardd.c Log: Removed a confusing "#if 0 ... #endif". Revision Changes Path 1.27 +1 -27 src/usr.sbin/pccard/pccardd/cardd.c From owner-cvs-usrsbin Fri Feb 27 13:56:26 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA07642 for cvs-usrsbin-outgoing; Fri, 27 Feb 1998 13:56:26 -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 NAA07509; Fri, 27 Feb 1998 13:56:07 -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 NAA28017; Fri, 27 Feb 1998 13:46:29 -0800 (PST) Date: Fri, 27 Feb 1998 13:46:29 -0800 (PST) Message-Id: <199802272146.NAA28017@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp ccp.c ipcp.c lcp.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/27 13:46:29 PST Modified files: (Branch: MP) usr.sbin/ppp ccp.c ipcp.c lcp.c Log: Reset fsm.maxconfig in the *_Setup() routines. Revision Changes Path 1.30.2.16 +2 -1 src/usr.sbin/ppp/ccp.c 1.50.2.18 +2 -1 src/usr.sbin/ppp/ipcp.c 1.55.2.22 +2 -1 src/usr.sbin/ppp/lcp.c From owner-cvs-usrsbin Fri Feb 27 13:56:37 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA07679 for cvs-usrsbin-outgoing; Fri, 27 Feb 1998 13:56:37 -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 NAA07495; Fri, 27 Feb 1998 13:56: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 NAA27974; Fri, 27 Feb 1998 13:46:03 -0800 (PST) Date: Fri, 27 Feb 1998 13:46:03 -0800 (PST) Message-Id: <199802272146.NAA27974@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp modem.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/27 13:46:02 PST Modified files: (Branch: MP) usr.sbin/ppp modem.c Log: Don't require CD to enter packet mode. Remove some extraneous #if 0 stuff. Revision Changes Path 1.77.2.26 +2 -16 src/usr.sbin/ppp/modem.c From owner-cvs-usrsbin Sat Feb 28 07:26:24 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA18688 for cvs-usrsbin-outgoing; Sat, 28 Feb 1998 07:26:24 -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 HAA18640; Sat, 28 Feb 1998 07:26:12 -0800 (PST) (envelope-from jraynard@FreeBSD.org) From: James Raynard Received: (from jraynard@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA07748; Sat, 28 Feb 1998 07:14:01 -0800 (PST) Date: Sat, 28 Feb 1998 07:14:01 -0800 (PST) Message-Id: <199802281514.HAA07748@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/syslogd syslogd.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jraynard 1998/02/28 07:14:01 PST Modified files: usr.sbin/syslogd syslogd.c Log: Don't assume sigset_t and int are equivalent. Also, get sigprocmask arguments the right way round. Revision Changes Path 1.28 +8 -6 src/usr.sbin/syslogd/syslogd.c From owner-cvs-usrsbin Sat Feb 28 17:08:49 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA15738 for cvs-usrsbin-outgoing; Sat, 28 Feb 1998 17:08:49 -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 RAA15709; Sat, 28 Feb 1998 17:08:43 -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 RAA03337; Sat, 28 Feb 1998 17:07:52 -0800 (PST) Date: Sat, 28 Feb 1998 17:07:52 -0800 (PST) Message-Id: <199803010107.RAA03337@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 bundle.c bundle.h ccp.c chap.c chap.h command.c datalink.c datalink.h hdlc.c lcp.c main.c modem.c pap.c pap.h prompt.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/28 17:07:52 PST Modified files: (Branch: MP) usr.sbin/ppp auth.c auth.h bundle.c bundle.h ccp.c chap.c chap.h command.c datalink.c datalink.h hdlc.c lcp.c main.c modem.c pap.c pap.h prompt.c Log: Do authentication at the datalink level, not the bundle level. The bundle doesn't get a LayerUp 'till we're authenticated. Introduce DATALINK_LCP and DATALINK_AUTH phases. Revision Changes Path 1.27.2.10 +19 -19 src/usr.sbin/ppp/auth.c 1.10.2.4 +6 -3 src/usr.sbin/ppp/auth.h 1.1.2.18 +26 -20 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.12 +3 -1 src/usr.sbin/ppp/Attic/bundle.h 1.30.2.17 +3 -1 src/usr.sbin/ppp/ccp.c 1.28.2.11 +25 -24 src/usr.sbin/ppp/chap.c 1.9.2.3 +9 -2 src/usr.sbin/ppp/chap.h 1.131.2.30 +2 -1 src/usr.sbin/ppp/command.c 1.1.2.16 +122 -54 src/usr.sbin/ppp/Attic/datalink.c 1.1.2.10 +9 -2 src/usr.sbin/ppp/Attic/datalink.h 1.28.2.15 +2 -1 src/usr.sbin/ppp/hdlc.c 1.55.2.23 +1 -4 src/usr.sbin/ppp/lcp.c 1.121.2.29 +2 -1 src/usr.sbin/ppp/main.c 1.77.2.27 +4 -3 src/usr.sbin/ppp/modem.c 1.20.2.11 +15 -14 src/usr.sbin/ppp/pap.c 1.5.2.3 +2 -3 src/usr.sbin/ppp/pap.h 1.1.2.10 +2 -1 src/usr.sbin/ppp/Attic/prompt.c