diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2003-12-24 19:59:25 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2003-12-24 19:59:25 +0000 |
commit | 773b2797d0667b7493ddae968f2d78e5b54c673d (patch) | |
tree | 1ae1c8a3de5b2be384c0dac0550cadc6dd8d3190 /usr.sbin/bgpd/bgpd.h | |
parent | 57a2ceca5c5933da9b07fcc2cc03aa5d52102f02 (diff) |
now that we keep track of the routes we added to the kernel we can remove
them easily on shutdown without the RDE's help
Diffstat (limited to 'usr.sbin/bgpd/bgpd.h')
-rw-r--r-- | usr.sbin/bgpd/bgpd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h index 890cba6752d..e769662c8a8 100644 --- a/usr.sbin/bgpd/bgpd.h +++ b/usr.sbin/bgpd/bgpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpd.h,v 1.17 2003/12/24 19:21:20 henning Exp $ */ +/* $OpenBSD: bgpd.h,v 1.18 2003/12/24 19:59:24 henning Exp $ */ /* * Copyright (c) 2003 Henning Brauer <henning@openbsd.org> @@ -305,5 +305,6 @@ int kroute_init(void); int kroute_add(int, struct kroute *); int kroute_change(int, struct kroute *); int kroute_delete(int, struct kroute *); +void kroute_shutdown(int); #endif /* __BGPD_H__ */ |