aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/ppp/route.h
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>1998-02-02 19:32:16 +0000
committerBrian Somers <brian@FreeBSD.org>1998-02-02 19:32:16 +0000
commit7a6f872047b686aa10864866e8c80b7d591f4f45 (patch)
tree1ddcf0984a59f7a40ff90ac252aa3e521e937b13 /usr.sbin/ppp/route.h
parent7308ec6890afae98c7b0e239eeda8a11e452e198 (diff)
downloadsrc-7a6f872047b686aa10864866e8c80b7d591f4f45.tar.gz
src-7a6f872047b686aa10864866e8c80b7d591f4f45.zip
Create `struct bundle' - the top level control structure.
This structure will eventually contain a list of NCPs (currently only IPCP is supported) and a list of physical `struct link's. It will also derive from a struct link itself. Make ModemTimeout() static - it's way to dangerous to be called from outside ! Bump version to 1.9. Our first MP release should be 2.0.
Notes
Notes: svn path=/cvs2svn/branches/MP/; revision=33029
Diffstat (limited to 'usr.sbin/ppp/route.h')
-rw-r--r--usr.sbin/ppp/route.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.sbin/ppp/route.h b/usr.sbin/ppp/route.h
index 133848755b68..f795be52ee61 100644
--- a/usr.sbin/ppp/route.h
+++ b/usr.sbin/ppp/route.h
@@ -17,13 +17,12 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Id: route.h,v 1.9 1997/12/30 02:45:48 brian Exp $
+ * $Id: route.h,v 1.10 1998/01/19 02:59:34 brian Exp $
*
*/
extern int GetIfIndex(char *);
extern int ShowRoute(struct cmdargs const *);
-extern void OsSetRoute(int, struct in_addr, struct in_addr, struct in_addr,int);
-extern void DeleteIfRoutes(int);
-extern struct in_addr ChooseHisAddr(const struct in_addr);
+extern void DeleteIfRoutes(const struct bundle *, int);
+extern struct in_addr ChooseHisAddr(struct bundle *, const struct in_addr);
extern const char *Index2Nam(int);