diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-12-06 16:08:09 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-12-22 02:26:18 +0100 |
commit | 6a78764e468bd002d795309e17b3fd01a40ea707 (patch) | |
tree | 5de58c7d401e0fae88fb78b859aa2b212ae3e422 /pimd/pim_mroute.h | |
parent | pimd: Cleanup debugs for pim_upstream_sg_running (diff) | |
download | frr-6a78764e468bd002d795309e17b3fd01a40ea707.tar.xz frr-6a78764e468bd002d795309e17b3fd01a40ea707.zip |
pimd: Clarify pim_mroute_[add|del] function debugging
When debugging is turned on for 'debug mroute' we
are unable to tell when a mroute has been added
or deleted from the mrib. Notice when we
do it and who called it.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_mroute.h')
-rw-r--r-- | pimd/pim_mroute.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pimd/pim_mroute.h b/pimd/pim_mroute.h index ce300f0ab..b3f56aa72 100644 --- a/pimd/pim_mroute.h +++ b/pimd/pim_mroute.h @@ -172,8 +172,8 @@ int pim_mroute_socket_disable(void); int pim_mroute_add_vif(struct interface *ifp, struct in_addr ifaddr, unsigned char flags); int pim_mroute_del_vif(int vif_index); -int pim_mroute_add(struct channel_oil *c_oil); -int pim_mroute_del(struct channel_oil *c_oil); +int pim_mroute_add(struct channel_oil *c_oil, const char *name); +int pim_mroute_del(struct channel_oil *c_oil, const char *name); int pim_mroute_msg(int fd, const char *buf, int buf_size); |