]> git.proxmox.com Git - mirror_frr.git/blame - watchfrr/watchfrr_errors.h
watchfrr: Add WATCHFRR_ERR_XXX for zlog_err to zlog_ferr
[mirror_frr.git] / watchfrr / watchfrr_errors.h
CommitLineData
b647dc2a
DS
1/*
2 * watchfrr_errors - header for error messages that may occur in the
3 * watchfrr process
4 * Copyright (C) 2018 Cumulus Networks, Inc.
5 * Donald Sharp
6 *
7 * FRR is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * FRR is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21#ifndef __WATCHFRR_ERRORS_H__
22#define __WATCHFRR_ERRORS_H__
23
24#include "lib/ferr.h"
25#include "watchfrr_errors.h"
26
27enum watchfrr_ferr_refs {
28 WATCHFRR_ERR_CONNECTION = WATCHFRR_FERR_START,
29};
30
31extern void watchfrr_error_init(void);
32
33#endif