From owner-cvs-src@FreeBSD.ORG Thu Feb 3 10:49:20 2005 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A907616A4CE; Thu, 3 Feb 2005 10:49:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E39543D1F; Thu, 3 Feb 2005 10:49:20 +0000 (GMT) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j13AnK9e023697; Thu, 3 Feb 2005 10:49:20 GMT (envelope-from brian@repoman.freebsd.org) Received: (from brian@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j13AnKAX023696; Thu, 3 Feb 2005 10:49:20 GMT (envelope-from brian) Message-Id: <200502031049.j13AnKAX023696@repoman.freebsd.org> From: Brian Somers Date: Thu, 3 Feb 2005 10:49:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/usr.sbin/ppp acf.c arp.c arp.h async.c atm.c atm.h auth.c auth.h bundle.c bundle.h cbcp.c ccp.c chap.c chap_ms.c chap_ms.h chat.c command.c datalink.c datalink.h deflate.c defs.c... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Feb 2005 10:49:20 -0000 brian 2005-02-03 10:49:20 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) usr.sbin/ppp acf.c arp.c arp.h async.c atm.c atm.h auth.c auth.h bundle.c bundle.h cbcp.c ccp.c chap.c chap_ms.c chap_ms.h chat.c command.c datalink.c datalink.h deflate.c defs.c defs.h ether.c ether.h exec.c filter.c filter.h fsm.c fsm.h hdlc.c hdlc.h i4b.c i4b.h id.h iface.c iface.h ip.c ipcp.c iplist.c ipv6cp.c lcp.c lcp.h link.c lqr.c main.c main.h mbuf.c mbuf.h mp.c mp.h mppe.c nat_cmd.c ncp.c ncp.h ncpaddr.c netgraph.c netgraph.h pap.c physical.c physical.h ppp.8.m4 pred.c prompt.c proto.c radius.c radius.h route.c server.c slcompress.c slcompress.h sync.c systems.c tcp.c tcpmss.c tty.c tty.h udp.c udp.h vjcomp.c Log: MFC: - Add ``enable/disable echo'' and don't do fall back to sending echo requests when lqr fails by default (PR 74821) - Add radius_Flush() and call it before trying to send RAD_STOP messages - Update the slcompress.[ch] copyright - Fix some signed/unsigned types and add a const or two - Remove various unused arguments - Add __unused where appropriate - Send both NAS-IP-Address and NAS-Identifier but make them configurable - Fix a reference-after-free error when deleting datalink chains - Fix an offset error when emitting the content of packets - Add comments to explain why we use strlen() - Optimise out two socket() calls - Use MAX_FSM_OPT_LEN instead of 24 - Check some returns from malloc and fix some alignment issues (PRs 59995 & 71592) - Pad static structures out with explicit NULLs - #define NOALIAS -> NONAT - Document ${var} and ~ and fix a SEE ALSO xref - Bump to version 3.4.2 (from 3.2) Hopefully this also fixes PR 38058. Revision Changes Path 1.6.2.1 +4 -3 src/usr.sbin/ppp/acf.c 1.45.2.1 +8 -8 src/usr.sbin/ppp/arp.c 1.11.8.1 +4 -4 src/usr.sbin/ppp/arp.h 1.28.2.1 +5 -5 src/usr.sbin/ppp/async.c 1.9.10.1 +3 -3 src/usr.sbin/ppp/atm.c 1.1.12.1 +1 -1 src/usr.sbin/ppp/atm.h 1.56.4.1 +9 -11 src/usr.sbin/ppp/auth.c 1.20.8.1 +3 -5 src/usr.sbin/ppp/auth.h 1.133.8.1 +41 -31 src/usr.sbin/ppp/bundle.c 1.50.4.1 +31 -26 src/usr.sbin/ppp/bundle.h 1.23.8.1 +6 -6 src/usr.sbin/ppp/cbcp.c 1.76.8.1 +26 -19 src/usr.sbin/ppp/ccp.c 1.85.4.1 +34 -29 src/usr.sbin/ppp/chap.c 1.19.8.1 +6 -8 src/usr.sbin/ppp/chap_ms.c 1.8.8.1 +2 -3 src/usr.sbin/ppp/chap_ms.h 1.78.8.1 +9 -6 src/usr.sbin/ppp/chat.c 1.300.2.1 +158 -119 src/usr.sbin/ppp/command.c 1.75.6.1 +19 -11 src/usr.sbin/ppp/datalink.c 1.14.8.1 +1 -2 src/usr.sbin/ppp/datalink.h 1.25.8.1 +8 -8 src/usr.sbin/ppp/deflate.c 1.47.8.1 +15 -8 src/usr.sbin/ppp/defs.c 1.66.8.1 +2 -2 src/usr.sbin/ppp/defs.h 1.28.2.1 +9 -7 src/usr.sbin/ppp/ether.c 1.2.28.1 +2 -2 src/usr.sbin/ppp/ether.h 1.28.8.1 +2 -1 src/usr.sbin/ppp/exec.c 1.51.8.1 +11 -13 src/usr.sbin/ppp/filter.c 1.28.8.1 +3 -3 src/usr.sbin/ppp/filter.h 1.69.8.1 +23 -19 src/usr.sbin/ppp/fsm.c 1.27.8.1 +2 -2 src/usr.sbin/ppp/fsm.h 1.50.2.1 +6 -12 src/usr.sbin/ppp/hdlc.c 1.23.2.1 +2 -2 src/usr.sbin/ppp/hdlc.h 1.14.8.1 +6 -6 src/usr.sbin/ppp/i4b.c 1.4.28.1 +2 -2 src/usr.sbin/ppp/i4b.h 1.15.10.1 +3 -1 src/usr.sbin/ppp/id.h 1.36.6.1 +15 -5 src/usr.sbin/ppp/iface.c 1.7.8.1 +3 -3 src/usr.sbin/ppp/iface.h 1.101.2.1 +23 -15 src/usr.sbin/ppp/ip.c 1.120.2.1 +42 -43 src/usr.sbin/ppp/ipcp.c 1.9.28.1 +2 -2 src/usr.sbin/ppp/iplist.c 1.15.4.1 +8 -5 src/usr.sbin/ppp/ipv6cp.c 1.105.8.1 +37 -27 src/usr.sbin/ppp/lcp.c 1.30.8.1 +1 -0 src/usr.sbin/ppp/lcp.h 1.20.2.1 +4 -4 src/usr.sbin/ppp/link.c 1.46.2.1 +23 -20 src/usr.sbin/ppp/lqr.c 1.190.8.1 +10 -9 src/usr.sbin/ppp/main.c 1.12.8.1 +1 -1 src/usr.sbin/ppp/main.h 1.45.2.1 +6 -6 src/usr.sbin/ppp/mbuf.c 1.28.2.1 +5 -5 src/usr.sbin/ppp/mbuf.h 1.53.8.1 +28 -32 src/usr.sbin/ppp/mp.c 1.11.8.1 +2 -2 src/usr.sbin/ppp/mp.h 1.25.8.1 +12 -9 src/usr.sbin/ppp/mppe.c 1.60.4.1 +16 -9 src/usr.sbin/ppp/nat_cmd.c 1.5.10.1 +34 -24 src/usr.sbin/ppp/ncp.c 1.1.12.1 +1 -1 src/usr.sbin/ppp/ncp.h 1.14.4.1 +4 -2 src/usr.sbin/ppp/ncpaddr.c 1.5.4.1 +13 -11 src/usr.sbin/ppp/netgraph.c 1.2.10.1 +1 -1 src/usr.sbin/ppp/netgraph.h 1.50.8.1 +1 -1 src/usr.sbin/ppp/pap.c 1.56.2.1 +29 -18 src/usr.sbin/ppp/physical.c 1.27.2.1 +6 -6 src/usr.sbin/ppp/physical.h 1.312.2.1 +117 -8 src/usr.sbin/ppp/ppp.8.m4 1.34.8.1 +12 -10 src/usr.sbin/ppp/pred.c 1.30.6.1 +8 -5 src/usr.sbin/ppp/prompt.c 1.6.10.1 +4 -4 src/usr.sbin/ppp/proto.c 1.48.2.1 +44 -21 src/usr.sbin/ppp/radius.c 1.20.2.1 +1 -0 src/usr.sbin/ppp/radius.h 1.91.6.1 +19 -9 src/usr.sbin/ppp/route.c 1.42.8.1 +5 -3 src/usr.sbin/ppp/server.c 1.37.8.1 +34 -18 src/usr.sbin/ppp/slcompress.c 1.16.10.1 +27 -15 src/usr.sbin/ppp/slcompress.h 1.7.2.1 +4 -4 src/usr.sbin/ppp/sync.c 1.67.8.1 +4 -3 src/usr.sbin/ppp/systems.c 1.18.8.1 +2 -1 src/usr.sbin/ppp/tcp.c 1.7.2.1 +8 -8 src/usr.sbin/ppp/tcpmss.c 1.30.4.1 +22 -9 src/usr.sbin/ppp/tty.c 1.6.28.1 +2 -2 src/usr.sbin/ppp/tty.h 1.19.8.1 +3 -3 src/usr.sbin/ppp/udp.c 1.4.28.1 +2 -2 src/usr.sbin/ppp/udp.h 1.39.8.1 +3 -3 src/usr.sbin/ppp/vjcomp.c