From: Paul Mackerras Date: Mon, 14 Jul 1997 03:51:02 +0000 (+0000) Subject: update for 2.3.1 X-Git-Tag: RELEASE_2_3_6~174 X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=176cafe278ae1386723020bb00187e2f93939f99 update for 2.3.1 --- diff --git a/NeXT/if_ppp.c b/NeXT/if_ppp.c index 3f3e2c9..6803769 100644 --- a/NeXT/if_ppp.c +++ b/NeXT/if_ppp.c @@ -81,7 +81,7 @@ /* from if_sl.c,v 1.11 84/10/04 12:54:47 rick Exp */ #if !defined(lint) -static char sccsid[] = "$Revision: 1.2 $ ($Date: 1997/04/30 05:39:30 $)"; +static char sccsid[] = "$Revision: 1.3 $ ($Date: 1997/07/14 03:49:07 $)"; #endif /* not lint*/ #define KERNEL 1 @@ -282,7 +282,7 @@ pppattach() register struct ppp_softc *sc; register int i = 0; - IOLog("\nPPP version 2.3b3 for NS 3.2 and 3.3\n"); + IOLog("\nPPP version 2.3.1 for NS 3.2 and 3.3\n"); IOLog("LKS: %s\n", sccsid); IOLog("by Stephen Perkins, Philip Prindeville, and Pete French\n"); diff --git a/README b/README index 5b67ae0..0fd22ed 100644 --- a/README +++ b/README @@ -59,6 +59,33 @@ be recompiled and the system rebooted. See the README.* files for details. +What's new in ppp-2.3.1. +************************ + +* Enhancements to chat, thanks to Francis Demierre. Chat can now +accept comments in the chat script file, and has new SAY, HANGUP, +CLR_ABORT and CLR_REPORT keywords. + +* Fixed a bug which causes 2.3.0 to crash Solaris systems. + +* Bug-fixes and restructuring of the Linux kernel driver. + +* The holdoff behaviour of pppd has been changed slightly: now, if +the link comes up for IP (or other network protocol) traffic, we +consider that the link has been successfully established, and don't +enforce the holdoff period after the link goes down. + +* Pppd should now correctly wait for CD (carrier detect) from the +modem, even when the serial port initially had CLOCAL set, and it +should also detect loss of CD during or immediately after the +connection script runs. + +* Under linux, pppd will work with older 2.2.0* version kernel +drivers, although demand-dialling is not supported with them. + +* Minor bugfixes for pppd. + + What's new in ppp-2.3. ********************** @@ -167,4 +194,4 @@ The primary site for releases of this software is: ftp://cs.anu.edu.au/pub/software/ppp/ -($Id: README,v 1.8 1997/05/22 06:43:44 paulus Exp $) +($Id: README,v 1.9 1997/07/14 03:48:52 paulus Exp $) diff --git a/modules/if_ppp.c b/modules/if_ppp.c index 2a4dcfc..a190269 100644 --- a/modules/if_ppp.c +++ b/modules/if_ppp.c @@ -24,7 +24,7 @@ * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, * OR MODIFICATIONS. * - * $Id: if_ppp.c,v 1.5 1997/04/30 05:43:54 paulus Exp $ + * $Id: if_ppp.c,v 1.6 1997/07/14 03:51:02 paulus Exp $ */ /* @@ -296,7 +296,7 @@ if_ppp_wput(q, mp) #endif ifp->if_output = if_ppp_output; #ifdef __osf__ - ifp->if_version = "Point-to-Point Protocol, version 2.3"; + ifp->if_version = "Point-to-Point Protocol, version 2.3.1"; ifp->if_mediamtu = PPP_MTU; ifp->if_type = IFT_PPP; ifp->if_hdrlen = PPP_HDRLEN;