]> git.proxmox.com Git - mirror_frr.git/blame - pimd/pim6_cmd.h
Merge pull request #10746 from ton31337/feature/show_group_type_under_rp_info_cli
[mirror_frr.git] / pimd / pim6_cmd.h
CommitLineData
5d613d13
SG
1/*
2 * PIM for IPv6 FRR
3 * Copyright (C) 2022 Vmware, Inc.
4 * Mobashshera Rasool <mrasool@vmware.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20#ifndef PIM6_CMD_H
21#define PIM6_CMD_H
22
23#define PIM_STR "PIM information\n"
24#define MLD_STR "MLD information\n"
25#define MLD_GROUP_STR "MLD groups information\n"
26#define MLD_SOURCE_STR "MLD sources information\n"
27#define IFACE_MLD_STR "Enable MLD operation\n"
28#define IFACE_MLD_QUERY_INTERVAL_STR "MLD host query interval\n"
29#define IFACE_MLD_QUERY_MAX_RESPONSE_TIME_STR \
30 "MLD max query response value (seconds)\n"
31#define IFACE_MLD_QUERY_MAX_RESPONSE_TIME_DSEC_STR \
32 "MLD max query response value (deciseconds)\n"
33#define IFACE_MLD_LAST_MEMBER_QUERY_INTERVAL_STR \
34 "MLD last member query interval\n"
35#define IFACE_MLD_LAST_MEMBER_QUERY_COUNT_STR "MLD last member query count\n"
dab0ac29 36#define IFACE_PIM_STR "Enable PIM SSM operation\n"
2b16b40f 37#define IFACE_PIM_SM_STR "Enable PIM SM operation\n"
e6aab613 38#define IFACE_PIM_HELLO_STR "Hello Interval\n"
39#define IFACE_PIM_HELLO_TIME_STR "Time in seconds for Hello Interval\n"
40#define IFACE_PIM_HELLO_HOLD_STR "Time in seconds for Hold Interval\n"
5d613d13
SG
41#define MROUTE_STR "IP multicast routing table\n"
42#define DEBUG_MLD_STR "MLD protocol activity\n"
43#define DEBUG_MLD_EVENTS_STR "MLD protocol events\n"
44#define DEBUG_MLD_PACKETS_STR "MLD protocol packets\n"
45#define DEBUG_MLD_TRACE_STR "MLD internal daemon activity\n"
46
47void pim_cmd_init(void);
48
49#endif /* PIM6_CMD_H */