Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 25 Nov 1998 23:14:50 -0800 (PST)
From:      "Jordan K. Hubbard" <jkh@FreeBSD.ORG>
To:        cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG
Subject:   cvs commit: src/usr.sbin/ppp Makefile README.alias README.devel alias_cmd.c alias_cmd.h arp.c arp.h async.c async.h auth.c auth.h ccp.c ccp.h chap.c chap.h chap_ms.c chap_ms.h chat.c chat.h command.c command.h deflate.c deflate.h defs.c defs.h filter.c ...
Message-ID:  <199811260714.XAA14424@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
jkh         1998/11/25 23:14:50 PST

  Modified files:        (Branch: RELENG_2_2)
    usr.sbin/ppp         Makefile README.alias README.devel 
                         alias_cmd.c alias_cmd.h arp.c arp.h 
                         async.c async.h auth.c auth.h ccp.c ccp.h 
                         chap.c chap.h chap_ms.c chap_ms.h chat.c 
                         chat.h command.c command.h deflate.c 
                         deflate.h defs.c defs.h filter.c filter.h 
                         fsm.c fsm.h hdlc.c hdlc.h id.c id.h ip.c 
                         ip.h ipcp.c ipcp.h iplist.c iplist.h 
                         lcp.c lcp.h lcpproto.h log.c log.h lqr.c 
                         lqr.h main.c main.h mbuf.c mbuf.h modem.c 
                         modem.h pap.c pap.h ppp.8 pred.c pred.h 
                         route.c route.h server.c server.h sig.c 
                         sig.h slcompress.c slcompress.h systems.c 
                         systems.h throughput.c throughput.h 
                         timer.c timer.h tun.c tun.h vjcomp.c 
                         vjcomp.h 
  Log:
  MFC: megacommit to bring 2.2 ppp up to full merge status with 3.0.  This
  has been tested at several sites and proven to be substantially
  less buggy than the 2.2 version.  New files have already been tagged
  in, though they do not appear in this commit.
  
  OK'd by:	brian
  
  Revision  Changes    Path
  1.9.2.18  +22 -15    src/usr.sbin/ppp/Makefile
  1.1.2.2   +23 -23    src/usr.sbin/ppp/README.alias
  1.1.2.2   +5 -8      src/usr.sbin/ppp/README.devel
  1.1.2.6   +74 -54    src/usr.sbin/ppp/alias_cmd.c
  1.1.2.3   +5 -3      src/usr.sbin/ppp/alias_cmd.h
  1.5.2.7   +70 -105   src/usr.sbin/ppp/arp.c
  1.1.4.4   +7 -3      src/usr.sbin/ppp/arp.h
  1.5.2.7   +56 -69    src/usr.sbin/ppp/async.c
  1.2.2.2   +25 -5     src/usr.sbin/ppp/async.h
  1.7.2.10  +172 -105  src/usr.sbin/ppp/auth.c
  1.3.2.5   +21 -13    src/usr.sbin/ppp/auth.h
  1.7.2.10  +380 -201  src/usr.sbin/ppp/ccp.c
  1.3.2.5   +69 -33    src/usr.sbin/ppp/ccp.h
  1.7.2.12  +110 -99   src/usr.sbin/ppp/chap.c
  1.3.2.4   +15 -3     src/usr.sbin/ppp/chap.h
  1.5.2.2   +4 -8      src/usr.sbin/ppp/chap_ms.c
  1.2.2.2   +2 -2      src/usr.sbin/ppp/chap_ms.h
  1.11.2.19 +578 -458  src/usr.sbin/ppp/chat.c
  1.1.4.6   +76 -23    src/usr.sbin/ppp/chat.h
  1.24.2.53 +1840 -1057src/usr.sbin/ppp/command.c
  1.2.6.5   +27 -26    src/usr.sbin/ppp/command.h
  1.6.2.2   +222 -246  src/usr.sbin/ppp/deflate.c
  1.3.2.2   +1 -1      src/usr.sbin/ppp/deflate.h
  1.11.2.4  +59 -60    src/usr.sbin/ppp/defs.c
  1.4.2.12  +34 -38    src/usr.sbin/ppp/defs.h
  1.6.2.10  +240 -202  src/usr.sbin/ppp/filter.c
  1.4.2.5   +22 -17    src/usr.sbin/ppp/filter.h
  1.7.2.11  +484 -289  src/usr.sbin/ppp/fsm.c
  1.5.2.5   +61 -34    src/usr.sbin/ppp/fsm.h
  1.9.2.9   +282 -220  src/usr.sbin/ppp/hdlc.c
  1.4.2.6   +59 -10    src/usr.sbin/ppp/hdlc.h
  1.6.2.3   +79 -24    src/usr.sbin/ppp/id.c
  1.3.2.3   +7 -2      src/usr.sbin/ppp/id.h
  1.9.2.19  +222 -193  src/usr.sbin/ppp/ip.c
  1.1.4.4   +12 -9     src/usr.sbin/ppp/ip.h
  1.9.2.22  +837 -394  src/usr.sbin/ppp/ipcp.c
  1.4.2.6   +75 -43    src/usr.sbin/ppp/ipcp.h
  1.4.2.2   +8 -8      src/usr.sbin/ppp/iplist.c
  1.2.2.3   +13 -11    src/usr.sbin/ppp/iplist.h
  1.10.2.27 +715 -472  src/usr.sbin/ppp/lcp.c
  1.4.6.4   +88 -34    src/usr.sbin/ppp/lcp.h
  1.4.6.4   +5 -1      src/usr.sbin/ppp/lcpproto.h
  1.4.2.11  +273 -51   src/usr.sbin/ppp/log.c
  1.6.2.7   +50 -22    src/usr.sbin/ppp/log.h
  1.7.2.13  +190 -151  src/usr.sbin/ppp/lqr.c
  1.3.2.4   +26 -31    src/usr.sbin/ppp/lqr.h
  1.22.2.50 +321 -869  src/usr.sbin/ppp/main.c
  1.1.4.4   +2 -8      src/usr.sbin/ppp/main.h
  1.3.6.6   +83 -47    src/usr.sbin/ppp/mbuf.c
  1.2.6.4   +28 -22    src/usr.sbin/ppp/mbuf.h
  1.24.2.33 +658 -494  src/usr.sbin/ppp/modem.c
  1.5.2.4   +21 -19    src/usr.sbin/ppp/modem.h
  1.7.2.11  +81 -94    src/usr.sbin/ppp/pap.c
  1.1.1.1.6.4 +7 -3      src/usr.sbin/ppp/pap.h
  1.19.2.39 +1894 -673 src/usr.sbin/ppp/ppp.8
  1.7.2.6   +98 -107   src/usr.sbin/ppp/pred.c
  1.1.4.4   +1 -1      src/usr.sbin/ppp/pred.h
  1.9.2.15  +203 -215  src/usr.sbin/ppp/route.c
  1.1.4.4   +29 -5     src/usr.sbin/ppp/route.h
  1.1.2.8   +180 -64   src/usr.sbin/ppp/server.c
  1.1.2.4   +21 -5     src/usr.sbin/ppp/server.h
  1.2.2.6   +4 -6      src/usr.sbin/ppp/sig.c
  1.2.2.6   +3 -3      src/usr.sbin/ppp/sig.h
  1.6.2.7   +70 -64    src/usr.sbin/ppp/slcompress.c
  1.3.6.6   +26 -11    src/usr.sbin/ppp/slcompress.h
  1.6.2.11  +155 -133  src/usr.sbin/ppp/systems.c
  1.1.4.5   +9 -3      src/usr.sbin/ppp/systems.h
  1.4.2.2   +83 -33    src/usr.sbin/ppp/throughput.c
  1.2.2.2   +12 -3     src/usr.sbin/ppp/throughput.h
  1.5.2.10  +70 -112   src/usr.sbin/ppp/timer.c
  1.5.2.2   +10 -11    src/usr.sbin/ppp/timer.h
  1.6.2.2   +28 -16    src/usr.sbin/ppp/tun.c
  1.3.2.3   +6 -4      src/usr.sbin/ppp/tun.h
  1.4.2.6   +48 -35    src/usr.sbin/ppp/vjcomp.c
  1.5.2.2   +8 -4      src/usr.sbin/ppp/vjcomp.h

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199811260714.XAA14424>