summaryrefslogtreecommitdiffstats
path: root/pimd/pim_static.c
Commit message (Collapse)AuthorAgeFilesLines
* pimd: Fix size_t zlog_err format string warningPaul Jakma2015-10-291-1/+1
| | | | * fc1c114aa / "pimd: Fix warning", the size_t arg should have a %zu format.
* pimd: Fix warningMartin Winter2015-10-161-1/+1
| | | | | | Fix long unsigned / unsigned mixup Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
* *: make sure zebra.h is always included firstDavid Lamparter2015-10-161-0/+2
| | | | | | | | zebra.h pulls in config.h, which results in fiddling with things like __FILE_OFFSET_BITS. It must always be included first, in order to set flags that influence the compiler via <features.h>. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
* pimd: add support for configuring multicast static routesJafar Al-Gharaibeh2015-08-211-0/+305
Hi, This patch adds the ability to configure multicast static routes directly into pimd. Two source files are introduced to implement the new feature in addition to changes to existing files. Here is how it can be used the CLI: interface <incoming interface> ip mroute <outgoing interface> <group addr> # for asm or ip mroute <outgoing interface> <group addr> <source> # for ssm Please let me know if you have any questions or concerns, Regards, Jafar Acked-by: Donald Sharp <sharpd@cumulusnetworks.com>