2023-02-08 13:17:09 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-06-18 19:21:27 +02:00
|
|
|
/*
|
2018-06-19 22:58:44 +02:00
|
|
|
* PIM-specific error messages.
|
2018-06-18 19:21:27 +02:00
|
|
|
* Copyright (C) 2018 Cumulus Networks, Inc.
|
|
|
|
* Donald Sharp
|
|
|
|
*/
|
2018-06-19 22:58:44 +02:00
|
|
|
|
2018-06-18 19:21:27 +02:00
|
|
|
#ifndef __PIM_ERRORS_H__
|
|
|
|
#define __PIM_ERRORS_H__
|
|
|
|
|
2018-06-19 22:58:44 +02:00
|
|
|
#include "lib/ferr.h"
|
2018-06-18 19:21:27 +02:00
|
|
|
|
2018-08-03 20:07:23 +02:00
|
|
|
enum pim_log_refs {
|
2018-09-13 21:12:58 +02:00
|
|
|
EC_PIM_MSDP_PACKET = PIM_FERR_START,
|
|
|
|
EC_PIM_CONFIG,
|
2018-06-18 19:21:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern void pim_error_init(void);
|
|
|
|
|
|
|
|
#endif
|