2023-02-08 13:17:09 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-06-19 21:59:44 +02:00
|
|
|
/*
|
2018-06-19 22:58:44 +02:00
|
|
|
* Watchfrr-specific error messages.
|
2018-06-19 21:59:44 +02:00
|
|
|
* Copyright (C) 2018 Cumulus Networks, Inc.
|
|
|
|
* Donald Sharp
|
|
|
|
*/
|
2018-06-19 22:58:44 +02:00
|
|
|
|
2018-06-19 21:59:44 +02:00
|
|
|
#ifndef __WATCHFRR_ERRORS_H__
|
|
|
|
#define __WATCHFRR_ERRORS_H__
|
|
|
|
|
|
|
|
#include "lib/ferr.h"
|
|
|
|
|
2018-08-03 20:07:23 +02:00
|
|
|
enum watchfrr_log_refs {
|
2018-09-13 21:16:02 +02:00
|
|
|
EC_WATCHFRR_CONNECTION = WATCHFRR_FERR_START,
|
2018-09-20 17:31:14 +02:00
|
|
|
EC_WATCHFRR_UNEXPECTED_DAEMONS,
|
2018-06-19 21:59:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern void watchfrr_error_init(void);
|
|
|
|
|
|
|
|
#endif
|