diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-06-01 15:31:02 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-06-01 15:31:02 -0400 | 
| commit | f91f89bcd6a7c0b26d9e5b9d7062a29451ab51b5 (patch) | |
| tree | b6ea99b4b91e6090f032b5a26388d8f36ac8bbc6 /pimd/pim_static.h | |
| parent | 54fec4d5086c93c0d5c18f5bbbcbe592f930f214 (diff) | |
pimd: Add support for displaying ip mroute
When you enter a static mroute under an interface
the 'show run' is not displaying this information.
Add code to allow this.
Ticket: CM-11257
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Reviewed-by: Daniel Walton <dwalton@cumulusnetworks.com>
Reviewed-by: Don Slice <dslice@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_static.h')
| -rw-r--r-- | pimd/pim_static.h | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/pimd/pim_static.h b/pimd/pim_static.h index 3a096932d2..b3be09e913 100644 --- a/pimd/pim_static.h +++ b/pimd/pim_static.h @@ -43,5 +43,6 @@ void pim_static_route_free(struct static_route *s_route);  int pim_static_add(struct interface *iif, struct interface *oif, struct in_addr group, struct in_addr source);  int pim_static_del(struct interface *iif, struct interface *oif, struct in_addr group, struct in_addr source); +int pim_static_write_mroute (struct vty *vty, struct interface *ifp);  #endif /* PIM_STATIC_H_ */  | 
