]> git.proxmox.com Git - mirror_frr.git/blob - pimd/pim6_cmd.h
Merge pull request #11243 from patrasar/pimv6_issue_11240
[mirror_frr.git] / pimd / pim6_cmd.h
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"
36 #define IFACE_PIM_STR "Enable PIM SSM operation\n"
37 #define IFACE_PIM_SM_STR "Enable PIM SM operation\n"
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"
41 #define MROUTE_STR "IP multicast routing table\n"
42 #define CLEAR_IP_PIM_STR "PIM clear commands\n"
43 #define DEBUG_MLD_STR "MLD protocol activity\n"
44 #define DEBUG_MLD_EVENTS_STR "MLD protocol events\n"
45 #define DEBUG_MLD_PACKETS_STR "MLD protocol packets\n"
46 #define DEBUG_MLD_TRACE_STR "MLD internal daemon activity\n"
47 #define CONF_SSMPINGD_STR "Enable ssmpingd operation\n"
48 #define DEBUG_PIMV6_STR "PIMv6 protocol activity\n"
49 #define DEBUG_PIMV6_EVENTS_STR "PIMv6 protocol events\n"
50 #define DEBUG_PIMV6_PACKETS_STR "PIMv6 protocol packets\n"
51 #define DEBUG_PIMV6_HELLO_PACKETS_STR "PIMv6 Hello protocol packets\n"
52 #define DEBUG_PIMV6_J_P_PACKETS_STR "PIMv6 Join/Prune protocol packets\n"
53 #define DEBUG_PIMV6_PIM_REG_PACKETS_STR \
54 "PIMv6 Register/Reg-Stop protocol packets\n"
55 #define DEBUG_PIMV6_PACKETDUMP_STR "PIMv6 packet dump\n"
56 #define DEBUG_PIMV6_PACKETDUMP_SEND_STR "Dump sent packets\n"
57 #define DEBUG_PIMV6_PACKETDUMP_RECV_STR "Dump received packets\n"
58 #define DEBUG_PIMV6_TRACE_STR "PIMv6 internal daemon activity\n"
59 #define DEBUG_PIMV6_ZEBRA_STR "ZEBRA protocol activity\n"
60
61 void pim_cmd_init(void);
62
63 #endif /* PIM6_CMD_H */