]> git.ozlabs.org Git - ppp.git/blobdiff - pppd/sys-NeXT.c
Put in a have_route_to cobbled up from stuff sent by Sowmini.
[ppp.git] / pppd / sys-NeXT.c
index 8ab5a12d5ec29d5acb976bb66c033bcd03735d5e..b42e0d191161f9d05d757a25cd3ebcf1ac1f4e0c 100644 (file)
@@ -20,7 +20,7 @@
  */
 
 #ifndef lint
-static char rcsid[] = "$Id: sys-NeXT.c,v 1.9 1998/03/25 02:17:23 paulus Exp $";
+static char rcsid[] = "$Id: sys-NeXT.c,v 1.11 1999/03/08 01:46:19 paulus Exp $";
 #endif
 
 #include <stdio.h>
@@ -1193,6 +1193,16 @@ GetMask(addr)
     return mask;
 }
 
+/*
+ * have_route_to - determine if the system has any route to
+ * a given IP address.
+ * For demand mode to work properly, we have to ignore routes
+ * through our own interface.
+ */
+int have_route_to(u_int32_t addr)
+{
+    return -1;
+}
 
 
 /*
@@ -1636,17 +1646,18 @@ get_host_seed()
 /*
  * sys_check_options - check the options that the user specified
  */
-void
+int
 sys_check_options()
 {
   /*
    * We don't support demand dialing yet.
    */
-  if(demand)
+  if (demand)
     {
       syslog(LOG_WARNING, "PPP-2.3 for NeXTSTEP does not yet support demand dialing\n");
-      demand = 0;
+      return 0;
     }
+  return 1;
 }