diff options
Diffstat (limited to 'pimd/pim_vty.c')
| -rw-r--r-- | pimd/pim_vty.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pimd/pim_vty.c b/pimd/pim_vty.c index d01cb0c873..315fbae95c 100644 --- a/pimd/pim_vty.c +++ b/pimd/pim_vty.c @@ -314,14 +314,14 @@ static int gm_config_write(struct vty *vty, int writes, /* IF ip igmp query-max-response-time */ if (pim_ifp->gm_query_max_response_time_dsec != - IGMP_QUERY_MAX_RESPONSE_TIME_DSEC) { + GM_QUERY_MAX_RESPONSE_TIME_DSEC) { vty_out(vty, " ip igmp query-max-response-time %d\n", pim_ifp->gm_query_max_response_time_dsec); ++writes; } /* IF ip igmp query-interval */ - if (pim_ifp->gm_default_query_interval != IGMP_GENERAL_QUERY_INTERVAL) { + if (pim_ifp->gm_default_query_interval != GM_GENERAL_QUERY_INTERVAL) { vty_out(vty, " ip igmp query-interval %d\n", pim_ifp->gm_default_query_interval); ++writes; @@ -329,7 +329,7 @@ static int gm_config_write(struct vty *vty, int writes, /* IF ip igmp last-member_query-count */ if (pim_ifp->gm_last_member_query_count != - IGMP_DEFAULT_ROBUSTNESS_VARIABLE) { + GM_DEFAULT_ROBUSTNESS_VARIABLE) { vty_out(vty, " ip igmp last-member-query-count %d\n", pim_ifp->gm_last_member_query_count); ++writes; @@ -337,7 +337,7 @@ static int gm_config_write(struct vty *vty, int writes, /* IF ip igmp last-member_query-interval */ if (pim_ifp->gm_specific_query_max_response_time_dsec != - IGMP_SPECIFIC_QUERY_MAX_RESPONSE_TIME_DSEC) { + GM_SPECIFIC_QUERY_MAX_RESPONSE_TIME_DSEC) { vty_out(vty, " ip igmp last-member-query-interval %d\n", pim_ifp->gm_specific_query_max_response_time_dsec); ++writes; @@ -381,23 +381,23 @@ static int gm_config_write(struct vty *vty, int writes, /* IF ipv6 mld query-max-response-time */ if (pim_ifp->gm_query_max_response_time_dsec != - IGMP_QUERY_MAX_RESPONSE_TIME_DSEC) + GM_QUERY_MAX_RESPONSE_TIME_DSEC) vty_out(vty, " ipv6 mld query-max-response-time %d\n", pim_ifp->gm_query_max_response_time_dsec); - if (pim_ifp->gm_default_query_interval != IGMP_GENERAL_QUERY_INTERVAL) + if (pim_ifp->gm_default_query_interval != GM_GENERAL_QUERY_INTERVAL) vty_out(vty, " ipv6 mld query-interval %d\n", pim_ifp->gm_default_query_interval); /* IF ipv6 mld last-member_query-count */ if (pim_ifp->gm_last_member_query_count != - IGMP_DEFAULT_ROBUSTNESS_VARIABLE) + GM_DEFAULT_ROBUSTNESS_VARIABLE) vty_out(vty, " ipv6 mld last-member-query-count %d\n", pim_ifp->gm_last_member_query_count); /* IF ipv6 mld last-member_query-interval */ if (pim_ifp->gm_specific_query_max_response_time_dsec != - IGMP_SPECIFIC_QUERY_MAX_RESPONSE_TIME_DSEC) + GM_SPECIFIC_QUERY_MAX_RESPONSE_TIME_DSEC) vty_out(vty, " ipv6 mld last-member-query-interval %d\n", pim_ifp->gm_specific_query_max_response_time_dsec); |
