diff options
author | Martin Mares <mj@ucw.cz> | 2000-05-04 22:52:28 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-05-04 22:52:28 +0200 |
commit | 9a220cabbc28a4e54f814aa5d596696a15e6544d (patch) | |
tree | e1cf20c35193f47abf86dd2c7d5bae0ac8107bb6 /proto | |
parent | b3acb10632ce9fa492a92ced1e533f0bf5edee21 (diff) | |
download | bird-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')
-rw-r--r-- | proto/ospf/ospf.c | 8 | ||||
-rw-r--r-- | proto/rip/rip.c | 7 |
2 files changed, 0 insertions, 15 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, }; - diff --git a/proto/rip/rip.c b/proto/rip/rip.c index 0a1bdbc..022d499 100644 --- a/proto/rip/rip.c +++ b/proto/rip/rip.c @@ -839,12 +839,6 @@ rip_init_config(struct rip_proto_config *c) c->authtype = AT_NONE; } -static void -rip_preconfig(struct protocol *x, struct config *c) -{ - DBG( "RIP: preconfig\n" ); -} - static int rip_get_attr(eattr *a, byte *buf) { @@ -862,7 +856,6 @@ struct protocol proto_rip = { name: "RIP", template: "rip%d", attr_class: EAP_RIP, - preconfig: rip_preconfig, get_route_info: rip_get_route_info, get_attr: rip_get_attr, |