diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-06-08 07:30:36 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-06-08 07:30:36 -0400 | 
| commit | 11e0acfba5b5c2c40225ba1ea0a2683887081738 (patch) | |
| tree | 52b1f267f6102f84576ecb287b249d9bf97dc082 /pimd/pim_oil.h | |
| parent | 82e16a13e5f8da8460486f7eeff57c6235be71e0 (diff) | |
pimd: The PIM_OIF_FLAG_PROTO_SRC flag was never used
Nor should it be.  So remove from system.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_oil.h')
| -rw-r--r-- | pimd/pim_oil.h | 8 | 
1 files changed, 3 insertions, 5 deletions
diff --git a/pimd/pim_oil.h b/pimd/pim_oil.h index 57930e3418..d097da6b3e 100644 --- a/pimd/pim_oil.h +++ b/pimd/pim_oil.h @@ -32,13 +32,11 @@   */  #define PIM_OIF_FLAG_PROTO_IGMP   (1 << 0)  #define PIM_OIF_FLAG_PROTO_PIM    (1 << 1) -#define PIM_OIF_FLAG_PROTO_SOURCE (1 << 2) -#define PIM_OIF_FLAG_PROTO_STAR   (1 << 3) -#define PIM_OIF_FLAG_PROTO_VXLAN  (1 << 4) +#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_SOURCE | PIM_OIF_FLAG_PROTO_STAR \ -	 | PIM_OIF_FLAG_PROTO_VXLAN) +	 | PIM_OIF_FLAG_PROTO_STAR | PIM_OIF_FLAG_PROTO_VXLAN)  /*   * We need a pimreg vif id from the kernel.  | 
