Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Apr 1999 01:09:23 -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 alias_cmd.c alias_cmd.h arp.c async.c auth.c auth.h bundle.c bundle.h cbcp.c ccp.c ccp.h chap.c chap.h chap_ms.c chap_ms.h chat.c command.c command.h datalink.c datalink.h deflate.c defs.c defs.h descriptor.h ...
Message-ID:  <199904200809.BAA46423@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

brian       1999/04/20 01:09:22 PDT

  Modified files:        (Branch: RELENG_3)
    usr.sbin/ppp         Makefile alias_cmd.c alias_cmd.h arp.c 
                         async.c auth.c auth.h bundle.c bundle.h 
                         cbcp.c ccp.c ccp.h chap.c chap.h 
                         chap_ms.c chap_ms.h chat.c command.c 
                         command.h datalink.c datalink.h deflate.c 
                         defs.c defs.h descriptor.h filter.c 
                         filter.h fsm.c fsm.h hdlc.c hdlc.h 
                         iface.c ip.c ipcp.c ipcp.h lcp.c lcp.h 
                         link.c log.c lqr.c main.c mbuf.c mbuf.h 
                         modem.c mp.c pap.c pap.h physical.h ppp.8 
                         pred.c prompt.c radius.c radius.h route.c 
                         route.h server.c sig.c sig.h slcompress.c 
                         systems.c tun.c vjcomp.c 
  Log:
  o Support ranges in ``alias port''.
  o Avoid some alpha/Wall warnings.
  o Becareful about aligning mbufs before casting bits of them.
  o Don't accept pap/chap packets unless we're in the right PHASE.
  o Be smarter when detecting HDLC headers.
  o Use a combination of the peers accmap and our own when async
    encoding, and back out the previous LCP changes.
  o Add an extra sig_Handle() to avoid hanging under certain
    curcumstances.
  o Tidy up macro usage in the man page.
  o Don't change \r\n to \r\r\n in tty raw mode.
  
  Revision  Changes    Path
  1.50.2.2  +0 -0      src/usr.sbin/ppp/Makefile
  1.18.2.2  +84 -43    src/usr.sbin/ppp/alias_cmd.c
  1.8.2.2   +0 -0      src/usr.sbin/ppp/alias_cmd.h
  1.31.2.2  +0 -0      src/usr.sbin/ppp/arp.c
  1.17.2.2  +1 -1      src/usr.sbin/ppp/async.c
  1.34.2.4  +2 -2      src/usr.sbin/ppp/auth.c
  1.12.2.4  +0 -0      src/usr.sbin/ppp/auth.h
  1.43.2.4  +1 -1      src/usr.sbin/ppp/bundle.c
  1.20.2.2  +0 -0      src/usr.sbin/ppp/bundle.h
  1.8.2.2   +2 -1      src/usr.sbin/ppp/cbcp.c
  1.40.2.2  +2 -1      src/usr.sbin/ppp/ccp.c
  1.19.2.2  +0 -0      src/usr.sbin/ppp/ccp.h
  1.37.2.2  +8 -1      src/usr.sbin/ppp/chap.c
  1.10.2.2  +0 -0      src/usr.sbin/ppp/chap.h
  1.6.2.2   +0 -0      src/usr.sbin/ppp/chap_ms.c
  1.3.2.2   +0 -0      src/usr.sbin/ppp/chap_ms.h
  1.52.2.2  +0 -0      src/usr.sbin/ppp/chat.c
  1.177.2.3 +4 -4      src/usr.sbin/ppp/command.c
  1.15.2.2  +0 -0      src/usr.sbin/ppp/command.h
  1.25.2.5  +5 -1      src/usr.sbin/ppp/datalink.c
  1.5.4.2   +0 -0      src/usr.sbin/ppp/datalink.h
  1.11.2.2  +0 -0      src/usr.sbin/ppp/deflate.c
  1.17.2.3  +0 -0      src/usr.sbin/ppp/defs.c
  1.36.2.3  +0 -0      src/usr.sbin/ppp/defs.h
  1.4.4.2   +0 -0      src/usr.sbin/ppp/descriptor.h
  1.26.2.2  +0 -0      src/usr.sbin/ppp/filter.c
  1.13.2.2  +0 -0      src/usr.sbin/ppp/filter.h
  1.37.2.2  +2 -1      src/usr.sbin/ppp/fsm.c
  1.19.2.2  +0 -0      src/usr.sbin/ppp/fsm.h
  1.36.2.2  +32 -30    src/usr.sbin/ppp/hdlc.c
  1.15.2.1  +2 -2      src/usr.sbin/ppp/hdlc.h
  1.2.4.2   +0 -0      src/usr.sbin/ppp/iface.c
  1.54.2.2  +2 -2      src/usr.sbin/ppp/ip.c
  1.68.2.3  +0 -0      src/usr.sbin/ppp/ipcp.c
  1.22.2.2  +0 -0      src/usr.sbin/ppp/ipcp.h
  1.66.2.3  +5 -17     src/usr.sbin/ppp/lcp.c
  1.19.2.2  +0 -0      src/usr.sbin/ppp/lcp.h
  1.6.4.2   +2 -1      src/usr.sbin/ppp/link.c
  1.35.2.3  +0 -0      src/usr.sbin/ppp/log.c
  1.30.2.2  +3 -2      src/usr.sbin/ppp/lqr.c
  1.146.2.4 +12 -1     src/usr.sbin/ppp/main.c
  1.22.2.2  +32 -6     src/usr.sbin/ppp/mbuf.c
  1.14.2.1  +2 -1      src/usr.sbin/ppp/mbuf.h
  1.100.2.3 +31 -19    src/usr.sbin/ppp/modem.c
  1.17.4.2  +0 -0      src/usr.sbin/ppp/mp.c
  1.27.2.4  +9 -1      src/usr.sbin/ppp/pap.c
  1.6.2.4   +0 -0      src/usr.sbin/ppp/pap.h
  1.5.2.2   +6 -1      src/usr.sbin/ppp/physical.h
  1.142.2.4 +26 -21    src/usr.sbin/ppp/ppp.8
  1.22.2.2  +0 -0      src/usr.sbin/ppp/pred.c
  1.12.4.2  +3 -2      src/usr.sbin/ppp/prompt.c
  1.4.2.2   +0 -0      src/usr.sbin/ppp/radius.c
  1.2.2.2   +0 -0      src/usr.sbin/ppp/radius.h
  1.54.2.2  +0 -0      src/usr.sbin/ppp/route.c
  1.11.2.2  +0 -0      src/usr.sbin/ppp/route.h
  1.23.2.3  +0 -0      src/usr.sbin/ppp/server.c
  1.13.2.1  +23 -11    src/usr.sbin/ppp/sig.c
  1.12.2.1  +2 -2      src/usr.sbin/ppp/sig.h
  1.20.2.2  +14 -20    src/usr.sbin/ppp/slcompress.c
  1.40.2.3  +0 -0      src/usr.sbin/ppp/systems.c
  1.10.2.2  +0 -0      src/usr.sbin/ppp/tun.c
  1.23.2.2  +8 -5      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?199904200809.BAA46423>