diff options
Diffstat (limited to 'pimd/pim_oil.h')
| -rw-r--r-- | pimd/pim_oil.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pimd/pim_oil.h b/pimd/pim_oil.h index 21047177ea..eed4b203cd 100644 --- a/pimd/pim_oil.h +++ b/pimd/pim_oil.h @@ -27,18 +27,18 @@ struct pim_interface; /* * Where did we get this (S,G) from? * - * IGMP - Learned from IGMP + * GM - Learned from IGMP/MLD * PIM - Learned from PIM * SOURCE - Learned from Source multicast packet received * STAR - Inherited */ -#define PIM_OIF_FLAG_PROTO_IGMP (1 << 0) +#define PIM_OIF_FLAG_PROTO_GM (1 << 0) #define PIM_OIF_FLAG_PROTO_PIM (1 << 1) #define PIM_OIF_FLAG_PROTO_STAR (1 << 2) #define PIM_OIF_FLAG_PROTO_VXLAN (1 << 3) -#define PIM_OIF_FLAG_PROTO_ANY \ - (PIM_OIF_FLAG_PROTO_IGMP | PIM_OIF_FLAG_PROTO_PIM \ - | PIM_OIF_FLAG_PROTO_STAR | PIM_OIF_FLAG_PROTO_VXLAN) +#define PIM_OIF_FLAG_PROTO_ANY \ + (PIM_OIF_FLAG_PROTO_GM | PIM_OIF_FLAG_PROTO_PIM | \ + PIM_OIF_FLAG_PROTO_STAR | PIM_OIF_FLAG_PROTO_VXLAN) /* OIF is present in the OIL but must not be used for forwarding traffic */ #define PIM_OIF_FLAG_MUTE (1 << 4) |
