summaryrefslogtreecommitdiffstats
path: root/proto/ospf
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-05-04 22:52:28 +0200
committerMartin Mares <mj@ucw.cz>2000-05-04 22:52:28 +0200
commit9a220cabbc28a4e54f814aa5d596696a15e6544d (patch)
treee1cf20c35193f47abf86dd2c7d5bae0ac8107bb6 /proto/ospf
parentb3acb10632ce9fa492a92ced1e533f0bf5edee21 (diff)
downloadbird-9a220cabbc28a4e54f814aa5d596696a15e6544d.tar
bird-9a220cabbc28a4e54f814aa5d596696a15e6544d.zip
#ifdef out lots of debugging information.
The long resource/routing table dump printed upon startup is gone now and if you wish to see it, just send bird SIGUSR1 or use the `debug' commands.
Diffstat (limited to 'proto/ospf')
-rw-r--r--proto/ospf/ospf.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c
index 860714e..ef9c576 100644
--- a/proto/ospf/ospf.c
+++ b/proto/ospf/ospf.c
@@ -70,12 +70,6 @@ ospf_init(struct proto_config *c)
}
static void
-ospf_preconfig(struct protocol *p, struct config *c)
-{
- DBG( " OSPF: preconfig\n" );
-}
-
-static void
ospf_postconfig(struct proto_config *c)
{
DBG( " OSPF: postconfig\n" );
@@ -87,7 +81,5 @@ struct protocol proto_ospf = {
init: ospf_init,
dump: ospf_dump,
start: ospf_start,
- preconfig: ospf_preconfig,
postconfig: ospf_postconfig,
};
-