Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 24 Aug 1997 17:29:36 -0700 (PDT)
From:      Brian Somers <brian@FreeBSD.ORG>
To:        cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG
Subject:   cvs commit: src/usr.sbin/ppp alias_cmd.c alias_cmd.h arp.c arp.h async.c auth.c auth.h ccp.c ccp.h chap.c chat.c chat.h command.c command.h defs.h filter.c filter.h fsm.c fsm.h hdlc.c hdlc.h ip.c ip.h ipcp.c ipcp.h lcp.c lcp.h lcpproto.h loadalias.c loadalias.h ...
Message-ID:  <199708250029.RAA05585@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
brian       1997/08/24 17:29:36 PDT

  Modified files:
    usr.sbin/ppp         alias_cmd.c alias_cmd.h arp.c arp.h 
                         async.c auth.c auth.h ccp.c ccp.h chap.c 
                         chat.c chat.h command.c command.h defs.h 
                         filter.c filter.h fsm.c fsm.h hdlc.c 
                         hdlc.h ip.c ip.h ipcp.c ipcp.h lcp.c 
                         lcp.h lcpproto.h loadalias.c loadalias.h 
                         log.c log.h lqr.c lqr.h main.c main.h 
                         mbuf.c mbuf.h modem.c modem.h os.c os.h 
                         pap.c passwdauth.c phase.h pred.c pred.h 
                         route.c route.h server.c sig.c sig.h 
                         slcompress.c slcompress.h systems.c 
                         systems.h timeout.h timer.c vars.c vars.h 
                         vjcomp.c 
  Log:
  Make the code format more in line with style(9).
  Update loadalias to use the new libalias api.
  Update to version 1.1.
  
  Revision  Changes    Path
  1.5       +144 -157  src/usr.sbin/ppp/alias_cmd.c
  1.2       +2 -2      src/usr.sbin/ppp/alias_cmd.h
  1.13      +209 -226  src/usr.sbin/ppp/arp.c
  1.5       +2 -1      src/usr.sbin/ppp/arp.h
  1.11      +17 -27    src/usr.sbin/ppp/async.c
  1.15      +41 -46    src/usr.sbin/ppp/auth.c
  1.7       +7 -4      src/usr.sbin/ppp/auth.h
  1.15      +30 -42    src/usr.sbin/ppp/ccp.c
  1.7       +8 -7      src/usr.sbin/ppp/ccp.h
  1.20      +17 -22    src/usr.sbin/ppp/chap.c
  1.32      +96 -75    src/usr.sbin/ppp/chat.c
  1.7       +3 -2      src/usr.sbin/ppp/chat.h
  1.75      +513 -602  src/usr.sbin/ppp/command.c
  1.5       +3 -3      src/usr.sbin/ppp/command.h
  1.18      +8 -8      src/usr.sbin/ppp/defs.h
  1.13      +87 -122   src/usr.sbin/ppp/filter.c
  1.9       +12 -11    src/usr.sbin/ppp/filter.h
  1.16      +135 -197  src/usr.sbin/ppp/fsm.c
  1.10      +35 -36    src/usr.sbin/ppp/fsm.h
  1.17      +103 -78   src/usr.sbin/ppp/hdlc.c
  1.10      +11 -10    src/usr.sbin/ppp/hdlc.h
  1.23      +132 -146  src/usr.sbin/ppp/ip.c
  1.5       +3 -2      src/usr.sbin/ppp/ip.h
  1.26      +112 -124  src/usr.sbin/ppp/ipcp.c
  1.9       +13 -11    src/usr.sbin/ppp/ipcp.h
  1.27      +105 -105  src/usr.sbin/ppp/lcp.c
  1.8       +19 -18    src/usr.sbin/ppp/lcp.h
  1.8       +15 -14    src/usr.sbin/ppp/lcpproto.h
  1.5       +51 -51    src/usr.sbin/ppp/loadalias.c
  1.2       +13 -13    src/usr.sbin/ppp/loadalias.h
  1.15      +76 -72    src/usr.sbin/ppp/log.c
  1.13      +6 -6      src/usr.sbin/ppp/log.h
  1.17      +27 -32    src/usr.sbin/ppp/lqr.c
  1.7       +19 -18    src/usr.sbin/ppp/lqr.h
  1.71      +233 -244  src/usr.sbin/ppp/main.c
  1.5       +2 -1      src/usr.sbin/ppp/main.h
  1.9       +18 -27    src/usr.sbin/ppp/mbuf.c
  1.6       +16 -15    src/usr.sbin/ppp/mbuf.h
  1.49      +221 -172  src/usr.sbin/ppp/modem.c
  1.9       +2 -1      src/usr.sbin/ppp/modem.h
  1.24      +84 -85    src/usr.sbin/ppp/os.c
  1.7       +3 -2      src/usr.sbin/ppp/os.h
  1.14      +16 -23    src/usr.sbin/ppp/pap.c
  1.5       +32 -36    src/usr.sbin/ppp/passwdauth.c
  1.7       +8 -7      src/usr.sbin/ppp/phase.h
  1.14      +68 -76    src/usr.sbin/ppp/pred.c
  1.5       +4 -3      src/usr.sbin/ppp/pred.h
  1.18      +110 -102  src/usr.sbin/ppp/route.c
  1.5       +2 -1      src/usr.sbin/ppp/route.h
  1.3       +62 -63    src/usr.sbin/ppp/server.c
  1.8       +43 -38    src/usr.sbin/ppp/sig.c
  1.9       +2 -2      src/usr.sbin/ppp/sig.h
  1.10      +449 -446  src/usr.sbin/ppp/slcompress.c
  1.7       +25 -23    src/usr.sbin/ppp/slcompress.h
  1.14      +19 -29    src/usr.sbin/ppp/systems.c
  1.6       +3 -2      src/usr.sbin/ppp/systems.h
  1.11      +9 -8      src/usr.sbin/ppp/timeout.h
  1.18      +79 -73    src/usr.sbin/ppp/timer.c
  1.25      +42 -46    src/usr.sbin/ppp/vars.c
  1.25      +38 -37    src/usr.sbin/ppp/vars.h
  1.9       +22 -26    src/usr.sbin/ppp/vjcomp.c



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