Date: Thu, 21 May 1998 23:38:22 +0100 From: Brian Somers <brian@Awfulhak.org> To: freebsd-current@FreeBSD.ORG Subject: **HEADS UP** user-ppp has changed ! Message-ID: <199805212238.XAA21939@awfulhak.org>
next in thread | raw e-mail | index | archive | help
Anyone using ppp in -current should take the time to read
README.changes and re-read the man page. There are more new features
than I can remember, one of which is Multilink.
The code is still a bit raw..... and has *not* been tested well
in multilink mode (I have limited resources).
Thanks.
> brian 1998/05/21 14:49:23 PDT
>
> Modified files:
> usr.sbin/ppp Makefile 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 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 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 pap.c pap.h ppp.8
> pred.c 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
> Added files:
> usr.sbin/ppp README.changes bundle.c bundle.h
> datalink.c datalink.h descriptor.h link.c
> link.h mp.c mp.h physical.c physical.h
> prompt.c prompt.h
> Removed files:
> usr.sbin/ppp os.c os.h pathnames.h phase.c phase.h
> vars.c vars.h
> Log:
> MFMP: Make ppp multilink capable.
> See the file README.changes, and re-read the man page.
>
> Revision Changes Path
> 1.37 +18 -10 src/usr.sbin/ppp/Makefile
> 1.13 +47 -51 src/usr.sbin/ppp/alias_cmd.c
> 1.8 +5 -3 src/usr.sbin/ppp/alias_cmd.h
> 1.28 +54 -81 src/usr.sbin/ppp/arp.c
> 1.8 +7 -3 src/usr.sbin/ppp/arp.h
> 1.16 +55 -69 src/usr.sbin/ppp/async.c
> 1.3 +25 -5 src/usr.sbin/ppp/async.h
> 1.29 +144 -109 src/usr.sbin/ppp/auth.c
> 1.11 +20 -13 src/usr.sbin/ppp/auth.h
> 1.32 +356 -198 src/usr.sbin/ppp/ccp.c
> 1.15 +67 -32 src/usr.sbin/ppp/ccp.h
> 1.31 +98 -103 src/usr.sbin/ppp/chap.c
> 1.10 +15 -3 src/usr.sbin/ppp/chap.h
> 1.6 +4 -8 src/usr.sbin/ppp/chap_ms.c
> 1.3 +2 -2 src/usr.sbin/ppp/chap_ms.h
> 1.45 +572 -458 src/usr.sbin/ppp/chat.c
> 1.10 +76 -23 src/usr.sbin/ppp/chat.h
> 1.135 +1348 -1004src/usr.sbin/ppp/command.c
> 1.13 +27 -26 src/usr.sbin/ppp/command.h
> 1.8 +219 -245 src/usr.sbin/ppp/deflate.c
> 1.13 +57 -60 src/usr.sbin/ppp/defs.c
> 1.30 +30 -38 src/usr.sbin/ppp/defs.h
> 1.23 +231 -197 src/usr.sbin/ppp/filter.c
> 1.12 +22 -17 src/usr.sbin/ppp/filter.h
> 1.28 +423 -283 src/usr.sbin/ppp/fsm.c
> 1.17 +59 -34 src/usr.sbin/ppp/fsm.h
> 1.31 +261 -219 src/usr.sbin/ppp/hdlc.c
> 1.15 +59 -10 src/usr.sbin/ppp/hdlc.h
> 1.8 +53 -24 src/usr.sbin/ppp/id.c
> 1.5 +5 -2 src/usr.sbin/ppp/id.h
> 1.41 +161 -183 src/usr.sbin/ppp/ip.c
> 1.9 +11 -9 src/usr.sbin/ppp/ip.h
> 1.51 +794 -388 src/usr.sbin/ppp/ipcp.c
> 1.19 +74 -43 src/usr.sbin/ppp/ipcp.h
> 1.5 +3 -5 src/usr.sbin/ppp/iplist.c
> 1.57 +520 -465 src/usr.sbin/ppp/lcp.c
> 1.17 +67 -33 src/usr.sbin/ppp/lcp.h
> 1.11 +4 -1 src/usr.sbin/ppp/lcpproto.h
> 1.16 +35 -38 src/usr.sbin/ppp/loadalias.c
> 1.5 +19 -15 src/usr.sbin/ppp/loadalias.h
> 1.27 +193 -46 src/usr.sbin/ppp/log.c
> 1.19 +51 -37 src/usr.sbin/ppp/log.h
> 1.25 +188 -151 src/usr.sbin/ppp/lqr.c
> 1.13 +26 -31 src/usr.sbin/ppp/lqr.h
> 1.123 +274 -830 src/usr.sbin/ppp/main.c
> 1.10 +2 -8 src/usr.sbin/ppp/main.h
> 1.14 +73 -36 src/usr.sbin/ppp/mbuf.c
> 1.12 +18 -14 src/usr.sbin/ppp/mbuf.h
> 1.81 +624 -493 src/usr.sbin/ppp/modem.c
> 1.17 +20 -19 src/usr.sbin/ppp/modem.h
> 1.23 +75 -94 src/usr.sbin/ppp/pap.c
> 1.6 +7 -3 src/usr.sbin/ppp/pap.h
> 1.100 +1252 -549 src/usr.sbin/ppp/ppp.8
> 1.21 +97 -107 src/usr.sbin/ppp/pred.c
> 1.45 +182 -199 src/usr.sbin/ppp/route.c
> 1.11 +29 -5 src/usr.sbin/ppp/route.h
> 1.18 +166 -62 src/usr.sbin/ppp/server.c
> 1.5 +21 -5 src/usr.sbin/ppp/server.h
> 1.13 +4 -6 src/usr.sbin/ppp/sig.c
> 1.12 +3 -3 src/usr.sbin/ppp/sig.h
> 1.16 +66 -63 src/usr.sbin/ppp/slcompress.c
> 1.11 +26 -11 src/usr.sbin/ppp/slcompress.h
> 1.36 +126 -129 src/usr.sbin/ppp/systems.c
> 1.11 +8 -3 src/usr.sbin/ppp/systems.h
> 1.5 +36 -31 src/usr.sbin/ppp/throughput.c
> 1.3 +4 -3 src/usr.sbin/ppp/throughput.h
> 1.28 +69 -108 src/usr.sbin/ppp/timer.c
> 1.6 +9 -11 src/usr.sbin/ppp/timer.h
> 1.7 +24 -14 src/usr.sbin/ppp/tun.c
> 1.4 +4 -2 src/usr.sbin/ppp/tun.h
> 1.17 +45 -35 src/usr.sbin/ppp/vjcomp.c
> 1.6 +8 -4 src/usr.sbin/ppp/vjcomp.h
>
--
Brian <brian@Awfulhak.org>, <brian@FreeBSD.org>, <brian@OpenBSD.org>
<http://www.Awfulhak.org>
Don't _EVER_ lose your sense of humour....
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199805212238.XAA21939>
