Date: Wed, 24 Mar 1999 10:03:17 -0800 (PST) From: Brian Somers <brian@FreeBSD.org> To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp radius.c radius.h Makefile README.changes README.devel alias_cmd.c alias_cmd.h arp.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 ... Message-ID: <199903241803.KAA00619@freefall.freebsd.org>
index | next in thread | raw e-mail
brian 1999/03/24 10:03:17 PST
Modified files: (Branch: RELENG_3)
usr.sbin/ppp Makefile README.changes README.devel
alias_cmd.c alias_cmd.h arp.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 iface.c ip.c ipcp.c ipcp.h
lcp.c lcp.h link.c log.c lqr.c main.c
mbuf.c modem.c mp.c pap.c pap.h
physical.h ppp.8 pred.c prompt.c route.c
route.h server.c slcompress.c systems.c
tun.c vjcomp.c
Added files: (Branch: RELENG_3)
usr.sbin/ppp radius.c radius.h
Log:
MFC:
o Add radius support.
o Add ``alias proxy'' and ``alias pptp'' support.
o Support server-side M$Chap authentication.
o Support client & server-side M$LANMan authentication.
o Support ``!program'' passwords.
o Use pipes only for unidirectional IPC.
o Extend ``set *retries'' commands.
o Don't ResetReq when doing Predictor compression.
o Delay carrier detection by a default of 1 second and implement
``set cd''.
o Implement incremental redial timeouts via ``set redial''.
o Don't use hard-coded quotes or brackets in the man page.
o ``random'' redials means 1-30 seconds, not 0-29.
o Close rather than hanging if the peer never responds to auth requests.
o Nuke outstanding authentication request timers when the layer is closed
unexpectedly.
o Log CCP errors as in the CCP log (not as a WARNING).
o Ensure that all TLU/TLD and TLS/TLF pairs are balanced.
o OR the peers ACCMAP with our own during LCP negotiations.
o Set the interface netmask correctly and show it in ``show ipcp''.
o Drop the correct diagnostic connections and remove the correct local
domain socket from ``set server''.
o If our config file doesn't exist, moan about that rather than claiming
that the ``default'' section doesn't exist.
Revision Changes Path
1.50.2.1 +19 -9 src/usr.sbin/ppp/Makefile
1.4.2.1 +6 -0 src/usr.sbin/ppp/README.changes
1.3.2.1 +1 -1 src/usr.sbin/ppp/README.devel
1.18.2.1 +52 -2 src/usr.sbin/ppp/alias_cmd.c
1.8.2.1 +3 -1 src/usr.sbin/ppp/alias_cmd.h
1.31.2.1 +5 -2 src/usr.sbin/ppp/arp.c
1.34.2.3 +115 -38 src/usr.sbin/ppp/auth.c
1.12.2.3 +21 -8 src/usr.sbin/ppp/auth.h
1.43.2.2 +45 -17 src/usr.sbin/ppp/bundle.c
1.20.2.1 +15 -11 src/usr.sbin/ppp/bundle.h
1.8.2.1 +6 -6 src/usr.sbin/ppp/cbcp.c
1.40.2.1 +41 -15 src/usr.sbin/ppp/ccp.c
1.19.2.1 +2 -2 src/usr.sbin/ppp/ccp.h
1.37.2.1 +619 -187 src/usr.sbin/ppp/chap.c
1.10.2.1 +21 -8 src/usr.sbin/ppp/chap.h
1.6.2.1 +48 -32 src/usr.sbin/ppp/chap_ms.c
1.3.2.1 +3 -2 src/usr.sbin/ppp/chap_ms.h
1.52.2.1 +13 -7 src/usr.sbin/ppp/chat.c
1.177.2.2 +173 -84 src/usr.sbin/ppp/command.c
1.15.2.1 +3 -1 src/usr.sbin/ppp/command.h
1.25.2.3 +171 -90 src/usr.sbin/ppp/datalink.c
1.5.4.1 +12 -6 src/usr.sbin/ppp/datalink.h
1.11.2.1 +6 -6 src/usr.sbin/ppp/deflate.c
1.17.2.2 +1 -1 src/usr.sbin/ppp/defs.c
1.36.2.2 +7 -2 src/usr.sbin/ppp/defs.h
1.4.4.1 +3 -1 src/usr.sbin/ppp/descriptor.h
1.26.2.1 +33 -21 src/usr.sbin/ppp/filter.c
1.13.2.1 +3 -2 src/usr.sbin/ppp/filter.h
1.37.2.1 +62 -28 src/usr.sbin/ppp/fsm.c
1.19.2.1 +18 -4 src/usr.sbin/ppp/fsm.h
1.36.2.1 +8 -5 src/usr.sbin/ppp/hdlc.c
1.2.4.1 +5 -2 src/usr.sbin/ppp/iface.c
1.54.2.1 +5 -2 src/usr.sbin/ppp/ip.c
1.68.2.2 +86 -36 src/usr.sbin/ppp/ipcp.c
1.22.2.1 +8 -4 src/usr.sbin/ppp/ipcp.h
1.66.2.1 +148 -56 src/usr.sbin/ppp/lcp.c
1.19.2.1 +9 -5 src/usr.sbin/ppp/lcp.h
1.6.4.1 +1 -2 src/usr.sbin/ppp/link.c
1.35.2.2 +1 -1 src/usr.sbin/ppp/log.c
1.30.2.1 +2 -2 src/usr.sbin/ppp/lqr.c
1.146.2.3 +10 -7 src/usr.sbin/ppp/main.c
1.22.2.1 +2 -7 src/usr.sbin/ppp/mbuf.c
1.100.2.2 +58 -32 src/usr.sbin/ppp/modem.c
1.17.4.1 +5 -2 src/usr.sbin/ppp/mp.c
1.27.2.3 +133 -93 src/usr.sbin/ppp/pap.c
1.6.2.3 +3 -4 src/usr.sbin/ppp/pap.h
1.5.2.1 +5 -1 src/usr.sbin/ppp/physical.h
1.142.2.3 +861 -220 src/usr.sbin/ppp/ppp.8
1.22.2.1 +22 -15 src/usr.sbin/ppp/pred.c
1.12.4.1 +4 -1 src/usr.sbin/ppp/prompt.c
1.54.2.1 +36 -26 src/usr.sbin/ppp/route.c
1.11.2.1 +3 -2 src/usr.sbin/ppp/route.h
1.23.2.2 +11 -5 src/usr.sbin/ppp/server.c
1.20.2.1 +5 -2 src/usr.sbin/ppp/slcompress.c
1.40.2.2 +19 -7 src/usr.sbin/ppp/systems.c
1.10.2.1 +14 -3 src/usr.sbin/ppp/tun.c
1.23.2.1 +5 -3 src/usr.sbin/ppp/vjcomp.c
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message
help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199903241803.KAA00619>
