/src/frr/pimd/pim_errors.c
Line | Count | Source |
1 | | // SPDX-License-Identifier: GPL-2.0-or-later |
2 | | /* |
3 | | * PIM-specific error messages. |
4 | | * Copyright (C) 2018 Cumulus Networks, Inc. |
5 | | * Donald Sharp |
6 | | */ |
7 | | |
8 | | #include <zebra.h> |
9 | | |
10 | | #include "lib/ferr.h" |
11 | | #include "pim_errors.h" |
12 | | |
13 | | /* clang-format off */ |
14 | | static struct log_ref ferr_pim_err[] = { |
15 | | { |
16 | | .code = EC_PIM_MSDP_PACKET, |
17 | | .title = "PIM MSDP Packet Error", |
18 | | .description = "PIM has received a packet from a peer that does not correctly decode", |
19 | | .suggestion = "Check MSDP peer and ensure it is correctly working" |
20 | | }, |
21 | | { |
22 | | .code = EC_PIM_CONFIG, |
23 | | .title = "PIM Configuration Error", |
24 | | .description = "PIM has detected a configuration error", |
25 | | .suggestion = "Ensure the configuration is correct and apply correct configuration" |
26 | | }, |
27 | | { |
28 | | .code = END_FERR, |
29 | | } |
30 | | }; |
31 | | /* clang-format on */ |
32 | | |
33 | | void pim_error_init(void) |
34 | 1 | { |
35 | 1 | log_ref_add(ferr_pim_err); |
36 | 1 | } |