diff options
| author | Renato Westphal <renato@openbsd.org> | 2017-04-24 16:59:58 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-04-24 16:59:58 -0300 |
| commit | 94f6a203b7f0c9542fbacf796575e9a405547d9d (patch) | |
| tree | f61b16f774ba88ead12cedb30dcb016aceb6909a /pimd/pimd.c | |
| parent | 9134c9e9586fce4dcc18b33668c50c2e200d9ef3 (diff) | |
| parent | cba444817883b8b3b22a7ed9958dc9ed77f76230 (diff) | |
Merge pull request #345 from chiragshah6/pim_dev
pimd: Pim ECMP changes along with nexthop tracking using cached DB
Diffstat (limited to 'pimd/pimd.c')
| -rw-r--r-- | pimd/pimd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pimd/pimd.c b/pimd/pimd.c index bc39c95fac..7b100ffa4e 100644 --- a/pimd/pimd.c +++ b/pimd/pimd.c @@ -75,7 +75,9 @@ unsigned int qpim_keep_alive_time = PIM_KEEPALIVE_PERIOD; signed int qpim_rp_keep_alive_time = 0; int64_t qpim_nexthop_lookups = 0; int qpim_packet_process = PIM_DEFAULT_PACKET_PROCESS; -struct pim_instance *pimg = NULL; +uint8_t qpim_ecmp_enable = 0; +uint8_t qpim_ecmp_rebalance_enable = 0; +struct pim_instance *pimg = NULL; int32_t qpim_register_suppress_time = PIM_REGISTER_SUPPRESSION_TIME_DEFAULT; int32_t qpim_register_probe_time = PIM_REGISTER_PROBE_TIME_DEFAULT; |
