mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-01 12:50:23 +00:00

Allow the user to specify multiple rp commands. 'ip pim rp A.B.C.D' -> translates to 'ip pim rp A.G.C.D 224.0.0.0/24' ip pim rp A.B.C.D A.B.C.D/M First is the rp, second is the group with mask. Groups and masks cannot be over each other except 224.0.0.0/24 which is the fallback if used. Ticket: CM-7860 Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
44 lines
1.3 KiB
C
44 lines
1.3 KiB
C
/* pimd memory type declarations
|
|
*
|
|
* Copyright (C) 2015 David Lamparter
|
|
*
|
|
* This file is part of Quagga.
|
|
*
|
|
* Quagga is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation; either version 2, or (at your option) any
|
|
* later version.
|
|
*
|
|
* Quagga is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Quagga; see the file COPYING. If not, write to the Free
|
|
* Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
* 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef _QUAGGA_PIM_MEMORY_H
|
|
#define _QUAGGA_PIM_MEMORY_H
|
|
|
|
#include "memory.h"
|
|
|
|
DECLARE_MGROUP(PIMD)
|
|
DECLARE_MTYPE(PIM_CHANNEL_OIL)
|
|
DECLARE_MTYPE(PIM_INTERFACE)
|
|
DECLARE_MTYPE(PIM_IGMP_JOIN)
|
|
DECLARE_MTYPE(PIM_IGMP_SOCKET)
|
|
DECLARE_MTYPE(PIM_IGMP_GROUP)
|
|
DECLARE_MTYPE(PIM_IGMP_GROUP_SOURCE)
|
|
DECLARE_MTYPE(PIM_NEIGHBOR)
|
|
DECLARE_MTYPE(PIM_IFCHANNEL)
|
|
DECLARE_MTYPE(PIM_UPSTREAM)
|
|
DECLARE_MTYPE(PIM_SSMPINGD)
|
|
DECLARE_MTYPE(PIM_STATIC_ROUTE)
|
|
DECLARE_MTYPE(PIM_BR)
|
|
DECLARE_MTYPE(PIM_RP)
|
|
|
|
#endif /* _QUAGGA_PIM_MEMORY_H */
|