]> git.proxmox.com Git - mirror_frr.git/blob - pimd/pim6_cmd.h
lib: dont be tricky with session_id just make it a session_id
[mirror_frr.git] / pimd / pim6_cmd.h
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * PIM for IPv6 FRR
4 * Copyright (C) 2022 Vmware, Inc.
5 * Mobashshera Rasool <mrasool@vmware.com>
6 */
7 #ifndef PIM6_CMD_H
8 #define PIM6_CMD_H
9
10 #define PIM_STR "PIM information\n"
11 #define MLD_STR "MLD information\n"
12 #define MLD_GROUP_STR "MLD groups information\n"
13 #define MLD_SOURCE_STR "MLD sources information\n"
14 #define IFACE_MLD_STR "Enable MLD operation\n"
15 #define IFACE_MLD_QUERY_INTERVAL_STR "MLD host query interval\n"
16 #define IFACE_MLD_QUERY_MAX_RESPONSE_TIME_STR \
17 "MLD max query response value (seconds)\n"
18 #define IFACE_MLD_QUERY_MAX_RESPONSE_TIME_DSEC_STR \
19 "MLD max query response value (deciseconds)\n"
20 #define IFACE_MLD_LAST_MEMBER_QUERY_INTERVAL_STR \
21 "MLD last member query interval\n"
22 #define IFACE_MLD_LAST_MEMBER_QUERY_COUNT_STR "MLD last member query count\n"
23 #define IFACE_PIM_STR "Enable PIM SSM operation\n"
24 #define IFACE_PIM_SM_STR "Enable PIM SM operation\n"
25 #define IFACE_PIM_HELLO_STR "Hello Interval\n"
26 #define IFACE_PIM_HELLO_TIME_STR "Time in seconds for Hello Interval\n"
27 #define IFACE_PIM_HELLO_HOLD_STR "Time in seconds for Hold Interval\n"
28 #define MROUTE_STR "IP multicast routing table\n"
29 #define CLEAR_IP_PIM_STR "PIM clear commands\n"
30 #define DEBUG_MLD_STR "MLD protocol activity\n"
31 #define DEBUG_MLD_EVENTS_STR "MLD protocol events\n"
32 #define DEBUG_MLD_PACKETS_STR "MLD protocol packets\n"
33 #define DEBUG_MLD_TRACE_STR "MLD internal daemon activity\n"
34 #define CONF_SSMPINGD_STR "Enable ssmpingd operation\n"
35 #define DEBUG_PIMV6_STR "PIMv6 protocol activity\n"
36 #define DEBUG_PIMV6_EVENTS_STR "PIMv6 protocol events\n"
37 #define DEBUG_PIMV6_PACKETS_STR "PIMv6 protocol packets\n"
38 #define DEBUG_PIMV6_HELLO_PACKETS_STR "PIMv6 Hello protocol packets\n"
39 #define DEBUG_PIMV6_J_P_PACKETS_STR "PIMv6 Join/Prune protocol packets\n"
40 #define DEBUG_PIMV6_PIM_REG_PACKETS_STR \
41 "PIMv6 Register/Reg-Stop protocol packets\n"
42 #define DEBUG_PIMV6_PACKETDUMP_STR "PIMv6 packet dump\n"
43 #define DEBUG_PIMV6_PACKETDUMP_SEND_STR "Dump sent packets\n"
44 #define DEBUG_PIMV6_PACKETDUMP_RECV_STR "Dump received packets\n"
45 #define DEBUG_PIMV6_TRACE_STR "PIMv6 internal daemon activity\n"
46 #define DEBUG_PIMV6_ZEBRA_STR "ZEBRA protocol activity\n"
47 #define DEBUG_MROUTE6_STR "PIMv6 interaction with kernel MFC cache\n"
48 #define DEBUG_PIMV6_BSM_STR "BSR message processing activity\n"
49
50 void pim_cmd_init(void);
51
52 #endif /* PIM6_CMD_H */