]> git.ozlabs.org Git - ppp.git/commitdiff
update for 2.3.9
authorPaul Mackerras <paulus@samba.org>
Fri, 23 Jul 1999 07:07:34 +0000 (07:07 +0000)
committerPaul Mackerras <paulus@samba.org>
Fri, 23 Jul 1999 07:07:34 +0000 (07:07 +0000)
NeXT/Makefile.top
NeXT/if_ppp.c
README
README.linux
linux/ppp.c
modules/if_ppp.c

index e01a2ce3ab837388a323addc24fb57d2f11243fe..89e4027cdd0642baa05de8b7c8795fada2cd34d8 100644 (file)
@@ -1,6 +1,6 @@
 # ppp top level makefile for NeXT systems
 #
-# $Id: Makefile.top,v 1.7 1999/05/13 00:35:56 paulus Exp $
+# $Id: Makefile.top,v 1.8 1999/07/23 07:07:33 paulus Exp $
 #
 
 # Change the values of ARCHFLAGS to include the 
@@ -155,7 +155,7 @@ NEXTPORT = \
 #
 
 portdist: 
-       echo NeXT-ppp2.3.8-`sed -e '/version_string/!d' \
+       echo NeXT-ppp2.3.9-`sed -e '/version_string/!d' \
              -e 's/[^0-9.]*\([0-9.]*\).*/\1/' -e q ./NeXT/NeXT_Version.h` > .fname
        rm -rf `cat .fname`
        mkdir `cat .fname`
index aceb164c1c2eb16751ebd00d225aaa02b2ca9a79..bd3184034e713c05330f361e7f642fbea0429831 100644 (file)
@@ -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.9 $ ($Date: 1999/05/13 00:35:56 $)";
+static char sccsid[] = "$Revision: 1.10 $ ($Date: 1999/07/23 07:07:33 $)";
 #endif /* not lint*/
 
 #define KERNEL 1
@@ -285,7 +285,7 @@ pppattach()
     register struct ppp_softc *sc;
     register int i = 0;
     
-    IOLog("\nPPP version 2.3.8-%s for NeXTSTEP and OPENSTEP\n", PPPVERSION);
+    IOLog("\nPPP version 2.3.9-%s for NeXTSTEP and OPENSTEP\n", PPPVERSION);
     IOLog("by  Stephen Perkins, Philip Prindeville, and Pete French\n");
     if (install_ppp_ld() < 0) {
        IOLog("ppp: Could not install line discipline\n");
diff --git a/README b/README
index eb8aad69ac487e698427423cd198b36c4999e3b4..0ce0fa206658b49f344c07c0f0d800eb917c8c81 100644 (file)
--- a/README
+++ b/README
@@ -69,9 +69,40 @@ use any IP address.  (This only applies where the peer is
 authenticating itself to you, of course.)
 
 
-What's new in ppp-2.3.8.
+What's new in ppp-2.3.9.
 ************************
 
+* Support for the new generic PPP layer under development for the
+  Linux kernel.
+
+* You can now place extra options to apply to specific users at the
+  end of the line with their password in the pap-secrets or
+  chap-secrets file, separated from the IP address(es) with a "--"
+  separator.  These options are parsed after the peer is authenticated
+  but before network protocol (IPCP, IPXCP) or CCP negotiation
+  commences.
+
+* Pppd will apply the holdoff period if the link was terminated by the
+  peer.  It doesn't apply it if the link was terminated because the
+  local pppd thought it was idle.
+
+* The `nodefaultip' option can be used in demand mode to say that pppd
+  should not suggest its local IP address to the peer.
+
+* The `init' option has been added; this causes pppd to run a script
+  to initialize the serial device (e.g. by sending an init string to
+  the modem).  Unlike the connect option, this can be used in a
+  dial-in situation.  (Thanks to Tobias Ringstrom.)
+
+* There is a new `logfile' option to send log messages to a file as
+  well as syslog.
+
+* Sundry bugs fixed.
+
+
+What was new in ppp-2.3.8.
+**************************
+
 * The exit status of pppd will now indicate whether the link was
   successfully established, or if not, what error was encountered.
 
@@ -423,4 +454,4 @@ The primary site for releases of this software is:
        ftp://cs.anu.edu.au/pub/software/ppp/
 
 
-($Id: README,v 1.17 1999/05/13 00:30:16 paulus Exp $)
+($Id: README,v 1.18 1999/07/23 07:07:33 paulus Exp $)
index f46d8a35e3081f83f08f442734e70960381ba3cd..e784d0019f4308611321761e78e34a547961f2d2 100644 (file)
@@ -1,7 +1,7 @@
-PPP for Linux                                             Version 2.3.8
+PPP for Linux                                             Version 2.3.9
 =============                                                  based on
-                                                              ppp-2.3.8
-                                                               May 1999
+                                                              ppp-2.3.9
+                                                              July 1999
 
 Paul Mackerras      Paul.Mackerras@cs.anu.edu.au
 Al Longyear         longyear@netcom.com
index 7d2f144cc3f298c9541b6f0eca4877569e718bf8..f5f9151f5cc3e1744ae9412dc5787f39790037d4 100644 (file)
@@ -45,7 +45,7 @@
 
 #define PPP_MAX_RCV_QLEN       32      /* max # frames we queue up for pppd */
 
-/* $Id: ppp.c,v 1.29 1999/05/14 02:52:08 paulus Exp $ */
+/* $Id: ppp.c,v 1.30 1999/07/23 07:07:34 paulus Exp $ */
 
 #include <linux/version.h>
 #include <linux/config.h>
 #endif
 
 #undef PPP_VERSION
-#define PPP_VERSION    "2.3.8"
+#define PPP_VERSION    "2.3.9"
 
 #if LINUX_VERSION_CODE >= VERSION(2,1,4)
 
index 8573a1eee22df3694efe9dbef1bae128059bb3be..4a0dcb4a3b62552ef0b15ff77425a60f6ae9d3c1 100644 (file)
@@ -24,7 +24,7 @@
  * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS,
  * OR MODIFICATIONS.
  *
- * $Id: if_ppp.c,v 1.14 1999/05/13 00:35:57 paulus Exp $
+ * $Id: if_ppp.c,v 1.15 1999/07/23 07:07:34 paulus Exp $
  */
 
 /*
@@ -297,7 +297,7 @@ if_ppp_wput(q, mp)
 #endif /* __osf__ */
                ifp->if_output = if_ppp_output;
 #ifdef __osf__
-               ifp->if_version = "Point-to-Point Protocol, version 2.3.8";
+               ifp->if_version = "Point-to-Point Protocol, version 2.3.9";
                ifp->if_mediamtu = PPP_MTU;
                ifp->if_type = IFT_PPP;
                ifp->if_hdrlen = PPP_HDRLEN;