summaryrefslogtreecommitdiffstats
path: root/proto/ospf/ospf.c
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2010-04-07 00:19:23 +0200
committerOndrej Zajicek <santiago@crfreenet.org>2010-04-07 00:19:23 +0200
commitb8113a5e92cb19a0910041d5708f4eafeb713b54 (patch)
treec4882fd498ecd33c12363272368277ca239466da /proto/ospf/ospf.c
parentc429d4a4ba2cc8778634461e8adea33e0f0ae022 (diff)
downloadbird-b8113a5e92cb19a0910041d5708f4eafeb713b54.tar
bird-b8113a5e92cb19a0910041d5708f4eafeb713b54.zip
Implements BGP 'show protocols' info details.
Diffstat (limited to 'proto/ospf/ospf.c')
-rw-r--r--proto/ospf/ospf.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c
index 5ed8abb..107e3a4 100644
--- a/proto/ospf/ospf.c
+++ b/proto/ospf/ospf.c
@@ -1533,15 +1533,16 @@ ospf_sh_lsadb(struct proto *p)
struct protocol proto_ospf = {
- name:"OSPF",
- template:"ospf%d",
- attr_class:EAP_OSPF,
- init:ospf_init,
- dump:ospf_dump,
- start:ospf_start,
- shutdown:ospf_shutdown,
- get_route_info:ospf_get_route_info,
- get_attr:ospf_get_attr,
- get_status:ospf_get_status,
- reconfigure:ospf_reconfigure
+ name: "OSPF",
+ template: "ospf%d",
+ attr_class: EAP_OSPF,
+ init: ospf_init,
+ dump: ospf_dump,
+ start: ospf_start,
+ shutdown: ospf_shutdown,
+ reconfigure: ospf_reconfigure,
+ get_status: ospf_get_status,
+ get_attr: ospf_get_attr,
+ get_route_info: ospf_get_route_info
+ // show_proto_info: ospf_sh
};