diff options
| author | Chirag Shah <chirag@cumulusnetworks.com> | 2018-01-19 18:17:53 -0800 | 
|---|---|---|
| committer | Chirag Shah <chirag@cumulusnetworks.com> | 2018-01-20 19:30:59 -0800 | 
| commit | 2bc7673f110a92c7a20f170daf9b34d8c8190f8a (patch) | |
| tree | 7464fddff1091feaece4468d6507536b60a5ade6 /ospfd/ospf_interface.h | |
| parent | 4ff9eb721d5b089a86070f03282c3d0843194504 (diff) | |
ospfd: show ip ospf neighbor json output format
Current json output does not differentiate start of
neighbor ip object. Adding "neighbors" keyword at the
beginning of neighbor list. This is useful when
displaying vrf level output along with neighbors
list.
Ticket:CM-19097
Testing Done:
show ip ospf neighbor json
show ip ospf vrf all neighbor json
Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
Diffstat (limited to 'ospfd/ospf_interface.h')
| -rw-r--r-- | ospfd/ospf_interface.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_interface.h b/ospfd/ospf_interface.h index 829a3f4297..ab02444f7d 100644 --- a/ospfd/ospf_interface.h +++ b/ospfd/ospf_interface.h @@ -314,8 +314,8 @@ extern struct crypt_key *ospf_crypt_key_lookup(struct list *, u_char);  extern struct crypt_key *ospf_crypt_key_new(void);  extern void ospf_crypt_key_add(struct list *, struct crypt_key *);  extern int ospf_crypt_key_delete(struct list *, u_char); -  extern u_char ospf_default_iftype(struct interface *ifp); +extern int ospf_interface_neighbor_count(struct ospf_interface *oi);  /* Set all multicast memberships appropriately based on the type and     state of the interface. */  | 
