summaryrefslogtreecommitdiffstats
path: root/nest/proto.c
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2009-11-17 15:45:05 +0100
committerOndrej Zajicek <santiago@crfreenet.org>2009-11-17 15:45:05 +0100
commite04555c04545278cfe3aeae85d707b1d78e5abeb (patch)
tree19eb2904bbf4d5b3ada4c464ced28db176197d53 /nest/proto.c
parentd0e2d6d1e05455cf1ec4e71135edaa659fe96dac (diff)
downloadbird-e04555c04545278cfe3aeae85d707b1d78e5abeb.tar
bird-e04555c04545278cfe3aeae85d707b1d78e5abeb.zip
Implement description field of protocol.
Diffstat (limited to 'nest/proto.c')
-rw-r--r--nest/proto.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/nest/proto.c b/nest/proto.c
index 7bb1286..c05db76 100644
--- a/nest/proto.c
+++ b/nest/proto.c
@@ -307,6 +307,7 @@ protos_commit(struct config *new, struct config *old, int force_reconfig, int ty
if (sym && sym->class == SYM_PROTO && !new->shutdown)
{
/* Found match, let's check if we can smoothly switch to new configuration */
+ /* No need to check description */
nc = sym->def;
if (!force_reconfig
&& nc->protocol == oc->protocol
@@ -702,6 +703,8 @@ proto_do_show(struct proto *p, int verbose)
buf);
if (verbose)
{
+ if (p->cf->dsc)
+ cli_msg(-1006, " Description: %s", p->cf->dsc);
cli_msg(-1006, " Preference: %d", p->preference);
cli_msg(-1006, " Input filter: %s", filter_name(p->in_filter));
cli_msg(-1006, " Output filter: %s", filter_name(p->out_filter));