Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 23 Aug 1999 14:59:57 -0700 (PDT)
From:      Brian Somers <brian@FreeBSD.org>
To:        cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/usr.sbin/ppp acf.c acf.h exec.c exec.h i4b.c i4b.h layer.h proto.c proto.h sync.c sync.h tcp.c tcp.h tty.c tty.h udp.c udp.h Makefile README.changes alias_cmd.c alias_cmd.h arp.c async.c async.h auth.c bundle.c bundle.h cbcp.c cbcp.h ccp.c ccp.h ...
Message-ID:  <199908232159.OAA06596@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
brian       1999/08/23 14:59:56 PDT

  Modified files:        (Branch: RELENG_3)
    usr.sbin/ppp         Makefile README.changes alias_cmd.c 
                         alias_cmd.h arp.c async.c async.h auth.c 
                         bundle.c bundle.h cbcp.c cbcp.h ccp.c 
                         ccp.h chap.c chap.h chat.c chat.h 
                         command.c command.h datalink.c datalink.h 
                         deflate.c defs.c defs.h filter.c filter.h 
                         fsm.c fsm.h hdlc.c hdlc.h iface.c iface.h 
                         ip.c ip.h ipcp.c ipcp.h iplist.c lcp.c 
                         lcp.h link.c link.h log.c log.h lqr.c 
                         lqr.h main.c mbuf.c mbuf.h mp.c mp.h 
                         pap.c pap.h physical.c physical.h ppp.8 
                         pred.c prompt.c radius.c route.c 
                         slcompress.c systems.c throughput.c 
                         throughput.h timer.c tun.c vjcomp.c 
                         vjcomp.h 
  Added files:           (Branch: RELENG_3)
    usr.sbin/ppp         acf.c acf.h exec.c exec.h i4b.c i4b.h 
                         layer.h proto.c proto.h sync.c sync.h 
                         tcp.c tcp.h tty.c tty.h udp.c udp.h 
  Removed files:         (Branch: RELENG_3)
    usr.sbin/ppp         lcpproto.h modem.c modem.h 
  Log:
  MFC: Abstract the physical device layer (``show modem'' is now ``show
       physical'').
       Support ``physical'' and ``sync'' logging.
       ``set weight'' -> ``set bandwidth'' and a ``set autoload'' rewrite.
       ``set cd'' and better carrier detection.
       PPPoISDN support (.defined out in the Makefile as it's only
       functional with i4b-00.83.00 or better installed)
       PPPoUDP support
       -alias -> -nat
       Add -foreground and -quiet command lines switches
       Minimum idle timer support
       ``alias port'' range support
       Some alignment wrinkles ironed out
       Support for TUNSIFMODE and TUNSLMODE (if defined)
       Assorted throughput measurement improvements
       ``enable/disable keep-session'' support
       Adjust filter sets built with MYADDR and HISADDR when the IPs change
       Allow forward jumps in filter rules
       Support ospf filtering
       Better handing of ``no number'' CBCP REQs
       Handle file descriptor close-on-exec flags properly before exec()s
       Drop packets received when the current state is wrong
       Expand PROCESSID correctly when executing commands
       Add a new CARRIER phase (this is temporary - 'till ``set dial'' is
       abstracted and made device specific)
       Handle IPCP code rejects
       Support ``deny enddisc''
       Don't moan about group write permissions to ppp.conf
       More verbiage (now I'm making words up) in ``show mp''
       Show the correct `next' values in ``show timer''
       Plus an assortment of other minor changes
  
  Revision  Changes    Path
  1.50.2.4  +20 -10    src/usr.sbin/ppp/Makefile
  1.4.2.3   +13 -3     src/usr.sbin/ppp/README.changes
  1.18.2.4  +173 -46   src/usr.sbin/ppp/alias_cmd.c
  1.8.2.4   +7 -5      src/usr.sbin/ppp/alias_cmd.h
  1.31.2.4  +3 -1      src/usr.sbin/ppp/arp.c
  1.17.2.4  +48 -32    src/usr.sbin/ppp/async.c
  1.4.2.1   +3 -3      src/usr.sbin/ppp/async.h
  1.34.2.6  +7 -4      src/usr.sbin/ppp/auth.c
  1.43.2.6  +241 -289  src/usr.sbin/ppp/bundle.c
  1.20.2.4  +27 -26    src/usr.sbin/ppp/bundle.h
  1.8.2.4   +39 -12    src/usr.sbin/ppp/cbcp.c
  1.1.4.1   +2 -2      src/usr.sbin/ppp/cbcp.h
  1.40.2.5  +69 -41    src/usr.sbin/ppp/ccp.c
  1.19.2.4  +6 -6      src/usr.sbin/ppp/ccp.h
  1.37.2.5  +49 -38    src/usr.sbin/ppp/chap.c
  1.10.2.5  +2 -2      src/usr.sbin/ppp/chap.h
  1.52.2.5  +38 -85    src/usr.sbin/ppp/chat.c
  1.10.2.1  +1 -2      src/usr.sbin/ppp/chat.h
  1.177.2.5 +173 -117  src/usr.sbin/ppp/command.c
  1.15.2.4  +2 -2      src/usr.sbin/ppp/command.h
  1.25.2.8  +52 -26    src/usr.sbin/ppp/datalink.c
  1.5.4.4   +9 -7      src/usr.sbin/ppp/datalink.h
  1.11.2.4  +22 -23    src/usr.sbin/ppp/deflate.c
  1.17.2.5  +167 -1    src/usr.sbin/ppp/defs.c
  1.36.2.5  +7 -4      src/usr.sbin/ppp/defs.h
  1.26.2.4  +222 -101  src/usr.sbin/ppp/filter.c
  1.13.2.4  +50 -36    src/usr.sbin/ppp/filter.h
  1.37.2.4  +66 -72    src/usr.sbin/ppp/fsm.c
  1.19.2.4  +2 -2      src/usr.sbin/ppp/fsm.h
  1.36.2.4  +62 -284   src/usr.sbin/ppp/hdlc.c
  1.15.2.3  +5 -4      src/usr.sbin/ppp/hdlc.h
  1.2.4.4   +56 -2     src/usr.sbin/ppp/iface.c
  1.1.4.1   +3 -1      src/usr.sbin/ppp/iface.h
  1.54.2.4  +261 -259  src/usr.sbin/ppp/ip.c
  1.11.2.1  +3 -3      src/usr.sbin/ppp/ip.h
  1.68.2.6  +27 -30    src/usr.sbin/ppp/ipcp.c
  1.22.2.4  +2 -2      src/usr.sbin/ppp/ipcp.h
  1.7.2.1   +2 -1      src/usr.sbin/ppp/iplist.c
  1.66.2.5  +23 -18    src/usr.sbin/ppp/lcp.c
  1.19.2.4  +2 -2      src/usr.sbin/ppp/lcp.h
  1.6.4.4   +181 -35   src/usr.sbin/ppp/link.c
  1.4.4.1   +14 -6     src/usr.sbin/ppp/link.h
  1.35.2.5  +29 -16    src/usr.sbin/ppp/log.c
  1.23.2.1  +11 -9     src/usr.sbin/ppp/log.h
  1.30.2.4  +161 -43   src/usr.sbin/ppp/lqr.c
  1.13.2.1  +7 -3      src/usr.sbin/ppp/lqr.h
  1.146.2.6 +81 -64    src/usr.sbin/ppp/main.c
  1.22.2.4  +147 -55   src/usr.sbin/ppp/mbuf.c
  1.14.2.3  +52 -18    src/usr.sbin/ppp/mbuf.h
  1.17.4.5  +148 -47   src/usr.sbin/ppp/mp.c
  1.4.4.1   +13 -4     src/usr.sbin/ppp/mp.h
  1.27.2.6  +30 -20    src/usr.sbin/ppp/pap.c
  1.6.2.6   +2 -2      src/usr.sbin/ppp/pap.h
  1.7.2.2   +847 -67   src/usr.sbin/ppp/physical.c
  1.5.2.4   +71 -31    src/usr.sbin/ppp/physical.h
  1.142.2.9 +467 -265  src/usr.sbin/ppp/ppp.8
  1.22.2.4  +14 -12    src/usr.sbin/ppp/pred.c
  1.12.4.4  +2 -1      src/usr.sbin/ppp/prompt.c
  1.4.2.5   +2 -1      src/usr.sbin/ppp/radius.c
  1.54.2.4  +2 -1      src/usr.sbin/ppp/route.c
  1.20.2.4  +5 -7      src/usr.sbin/ppp/slcompress.c
  1.40.2.6  +3 -2      src/usr.sbin/ppp/systems.c
  1.8.2.1   +123 -47   src/usr.sbin/ppp/throughput.c
  1.5.2.1   +22 -13    src/usr.sbin/ppp/throughput.h
  1.32.2.1  +15 -8     src/usr.sbin/ppp/timer.c
  1.10.2.4  +10 -11    src/usr.sbin/ppp/tun.c
  1.23.2.4  +45 -37    src/usr.sbin/ppp/vjcomp.c
  1.6.2.1   +3 -3      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?199908232159.OAA06596>