Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 31 May 2000 17:49:02 -0700 (PDT)
From:      Brian Somers <brian@FreeBSD.org>
To:        cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/usr.sbin/ppp Makefile README.changes acf.c arp.c async.c auth.c bundle.c bundle.h cbcp.c ccp.c chap.c chap.h chat.c chat.h command.c command.h datalink.c datalink.h deflate.c defs.c defs.h descriptor.h ether.c ether.h exec.c filter.c filter.h fsm.c ...
Message-ID:  <200006010049.RAA14236@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
brian       2000/05/31 17:49:02 PDT

  Modified files:        (Branch: RELENG_3)
    usr.sbin/ppp         Makefile README.changes acf.c arp.c 
                         async.c auth.c bundle.c bundle.h cbcp.c 
                         ccp.c chap.c chap.h chat.c chat.h 
                         command.c command.h datalink.c datalink.h 
                         deflate.c defs.c defs.h descriptor.h 
                         ether.c ether.h exec.c filter.c filter.h 
                         fsm.c fsm.h hdlc.c i4b.c i4b.h id.c 
                         iface.c iface.h ip.c ip.h ipcp.c ipcp.h 
                         lcp.c link.c link.h log.c log.h lqr.c 
                         main.c mbuf.c mbuf.h mp.c mp.h nat_cmd.c 
                         nat_cmd.h pap.c physical.c physical.h 
                         ppp.8 pred.c prompt.c prompt.h proto.c 
                         radius.c radius.h route.c route.h 
                         server.c server.h slcompress.c sync.c 
                         systems.c systems.h tcp.c timer.c tty.c 
                         tty.h tun.h udp.c vjcomp.c 
  Log:
  MF4: Include netgraph support when building with RELEASE_CRUNCH
       Make mbufs more like kernel mbufs
       Allocate mbufs in buckets rather than individually
       Tidy up (and fix) sockaddr parsing of mib structures
       Parse quotes properly and complain about unbalanced ones
       Allow comments at the end of lines
       Use ioctl(TUNSIFHEAD) on the tun device if possible
       Correct CBCP redials
       Correct cmsghdr handling when passing links
       Don't fork to lose the current session when we're about to exit
       Tell the tun device when we change pid
       Show hex/decimal values rather than ??? for things not understood
       Depricate (but still support) -alias in favour of -nat
       Support DNS0/DNS1 macros, add the ``resolv'' command and dns logging
       Support redial/reconnect properly, and tell the -background parent
       Some constification, staticising, spelling and better diagnostics
       Default carrier behaviour based on the device type
       Differentiate between failing to start a program and the program exiting
       Fix the MP link-passing race by using a local-domain UDP socket
       Add "nat target"
       Fix some timer issues where timers are removed before they are triggered
       Handle pap text messages longer than 255 bytes
       Make -foreground a real option
       Bump version
  
  Revision  Changes    Path
  1.50.2.12 +10 -7     src/usr.sbin/ppp/Makefile
  1.4.2.5   +6 -1      src/usr.sbin/ppp/README.changes
  1.2.2.3   +7 -7      src/usr.sbin/ppp/acf.c
  1.31.2.6  +28 -40    src/usr.sbin/ppp/arp.c
  1.17.2.6  +12 -12    src/usr.sbin/ppp/async.c
  1.34.2.8  +25 -13    src/usr.sbin/ppp/auth.c
  1.43.2.11 +362 -173  src/usr.sbin/ppp/bundle.c
  1.20.2.7  +10 -6     src/usr.sbin/ppp/bundle.h
  1.8.2.7   +15 -15    src/usr.sbin/ppp/cbcp.c
  1.40.2.7  +37 -40    src/usr.sbin/ppp/ccp.c
  1.37.2.8  +28 -19    src/usr.sbin/ppp/chap.c
  1.10.2.7  +2 -2      src/usr.sbin/ppp/chap.h
  1.52.2.9  +18 -9     src/usr.sbin/ppp/chat.c
  1.10.2.5  +3 -3      src/usr.sbin/ppp/chat.h
  1.177.2.10 +108 -41   src/usr.sbin/ppp/command.c
  1.15.2.7  +4 -2      src/usr.sbin/ppp/command.h
  1.25.2.15 +47 -28    src/usr.sbin/ppp/datalink.c
  1.5.4.7   +3 -3      src/usr.sbin/ppp/datalink.h
  1.11.2.6  +59 -58    src/usr.sbin/ppp/deflate.c
  1.17.2.7  +77 -36    src/usr.sbin/ppp/defs.c
  1.36.2.7  +23 -9     src/usr.sbin/ppp/defs.h
  1.4.4.5   +6 -6      src/usr.sbin/ppp/descriptor.h
  1.6.2.3   +26 -10    src/usr.sbin/ppp/ether.c
  1.1.2.2   +3 -1      src/usr.sbin/ppp/ether.h
  1.8.2.4   +51 -11    src/usr.sbin/ppp/exec.c
  1.26.2.8  +33 -10    src/usr.sbin/ppp/filter.c
  1.13.2.7  +6 -4      src/usr.sbin/ppp/filter.h
  1.37.2.8  +51 -51    src/usr.sbin/ppp/fsm.c
  1.19.2.6  +2 -2      src/usr.sbin/ppp/fsm.h
  1.36.2.6  +21 -21    src/usr.sbin/ppp/hdlc.c
  1.1.2.4   +32 -10    src/usr.sbin/ppp/i4b.c
  1.1.2.4   +3 -1      src/usr.sbin/ppp/i4b.h
  1.11.2.4  +2 -1      src/usr.sbin/ppp/id.c
  1.2.4.7   +43 -39    src/usr.sbin/ppp/iface.c
  1.1.4.3   +4 -1      src/usr.sbin/ppp/iface.h
  1.54.2.8  +174 -38   src/usr.sbin/ppp/ip.c
  1.11.2.3  +2 -2      src/usr.sbin/ppp/ip.h
  1.68.2.10 +255 -151  src/usr.sbin/ppp/ipcp.c
  1.22.2.7  +14 -1     src/usr.sbin/ppp/ipcp.h
  1.66.2.7  +40 -35    src/usr.sbin/ppp/lcp.c
  1.6.4.7   +29 -26    src/usr.sbin/ppp/link.c
  1.4.4.4   +3 -3      src/usr.sbin/ppp/link.h
  1.35.2.8  +5 -4      src/usr.sbin/ppp/log.c
  1.23.2.4  +19 -17    src/usr.sbin/ppp/log.h
  1.30.2.7  +16 -16    src/usr.sbin/ppp/lqr.c
  1.146.2.10 +35 -31    src/usr.sbin/ppp/main.c
  1.22.2.7  +197 -102  src/usr.sbin/ppp/mbuf.c
  1.14.2.5  +25 -20    src/usr.sbin/ppp/mbuf.h
  1.17.4.8  +60 -71    src/usr.sbin/ppp/mp.c
  1.4.4.3   +3 -3      src/usr.sbin/ppp/mp.h
  1.33.2.2  +75 -32    src/usr.sbin/ppp/nat_cmd.c
  1.13.2.2  +2 -1      src/usr.sbin/ppp/nat_cmd.h
  1.27.2.9  +40 -15    src/usr.sbin/ppp/pap.c
  1.7.2.5   +45 -34    src/usr.sbin/ppp/physical.c
  1.5.2.7   +20 -16    src/usr.sbin/ppp/physical.h
  1.142.2.19 +160 -49   src/usr.sbin/ppp/ppp.8
  1.22.2.6  +20 -20    src/usr.sbin/ppp/pred.c
  1.12.4.7  +7 -6      src/usr.sbin/ppp/prompt.c
  1.4.4.2   +2 -2      src/usr.sbin/ppp/prompt.h
  1.3.2.3   +7 -7      src/usr.sbin/ppp/proto.c
  1.4.2.8   +20 -10    src/usr.sbin/ppp/radius.c
  1.2.2.5   +2 -2      src/usr.sbin/ppp/radius.h
  1.54.2.7  +152 -63   src/usr.sbin/ppp/route.c
  1.11.2.5  +12 -7     src/usr.sbin/ppp/route.h
  1.23.2.6  +6 -6      src/usr.sbin/ppp/server.c
  1.5.2.2   +2 -2      src/usr.sbin/ppp/server.h
  1.20.2.7  +8 -8      src/usr.sbin/ppp/slcompress.c
  1.4.2.3   +4 -4      src/usr.sbin/ppp/sync.c
  1.40.2.10 +140 -96   src/usr.sbin/ppp/systems.c
  1.13.2.2  +2 -1      src/usr.sbin/ppp/systems.h
  1.5.2.4   +4 -1      src/usr.sbin/ppp/tcp.c
  1.32.2.4  +22 -10    src/usr.sbin/ppp/timer.c
  1.12.2.5  +14 -8     src/usr.sbin/ppp/tty.c
  1.3.2.4   +3 -1      src/usr.sbin/ppp/tty.h
  1.6.2.2   +2 -12     src/usr.sbin/ppp/tun.h
  1.4.2.4   +5 -2      src/usr.sbin/ppp/udp.c
  1.23.2.6  +15 -16    src/usr.sbin/ppp/vjcomp.c



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?200006010049.RAA14236>