]> git.proxmox.com Git - mirror_frr.git/blob - zebra/zebra_errors.h
Merge pull request #2858 from Jafaral/sphinx
[mirror_frr.git] / zebra / zebra_errors.h
1 /*
2 * Zebra-specific error messages.
3 * Copyright (C) 2018 Cumulus Networks, Inc.
4 * Quentin Young
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
9 * any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #ifndef __ZEBRA_ERRORS_H__
22 #define __ZEBRA_ERRORS_H__
23
24 #include "lib/ferr.h"
25
26 enum zebra_log_refs {
27 ZEBRA_ERR_LM_RESPONSE = ZEBRA_FERR_START,
28 ZEBRA_ERR_LM_NO_SUCH_CLIENT,
29 ZEBRA_ERR_LM_RELAY_FAILED,
30 ZEBRA_ERR_LM_NO_SOCKET,
31 ZEBRA_ERR_LM_BAD_INSTANCE,
32 ZEBRA_ERR_LM_RELAY_REQUEST_FAILED,
33 ZEBRA_ERR_LM_CLIENT_CONNECTION_FAILED,
34 ZEBRA_ERR_LM_EXHAUSTED_LABELS,
35 ZEBRA_ERR_LM_DAEMON_MISMATCH,
36 ZEBRA_ERR_LM_UNRELEASED_CHUNK,
37 ZEBRA_ERR_DP_INVALID_RC,
38 ZEBRA_ERR_WQ_NONEXISTENT,
39 ZEBRA_ERR_FEC_ADD_FAILED,
40 ZEBRA_ERR_FEC_RM_FAILED,
41 ZEBRA_ERR_IRDP_LEN_MISMATCH,
42 ZEBRA_ERR_RNH_UNKNOWN_FAMILY,
43 ZEBRA_ERR_DP_INSTALL_FAIL,
44 ZEBRA_ERR_TABLE_LOOKUP_FAILED,
45 ZEBRA_ERR_NETLINK_NOT_AVAILABLE,
46 ZEBRA_ERR_PROTOBUF_NOT_AVAILABLE,
47 ZEBRA_ERR_TM_EXHAUSTED_IDS,
48 ZEBRA_ERR_TM_DAEMON_MISMATCH,
49 ZEBRA_ERR_TM_UNRELEASED_CHUNK,
50 ZEBRA_ERR_UNKNOWN_FAMILY,
51 ZEBRA_ERR_TM_WRONG_PROTO,
52 ZEBRA_ERR_PROTO_OR_INSTANCE_MISMATCH,
53 ZEBRA_ERR_LM_CANNOT_ASSIGN_CHUNK,
54 ZEBRA_ERR_LM_ALIENS,
55 ZEBRA_ERR_TM_CANNOT_ASSIGN_CHUNK,
56 ZEBRA_ERR_TM_ALIENS,
57 ZEBRA_ERR_RECVBUF,
58 ZEBRA_ERR_UNKNOWN_NLMSG,
59 ZEBRA_ERR_RECVMSG_OVERRUN,
60 ZEBRA_ERR_NETLINK_LENGTH_ERROR,
61 ZEBRA_ERR_UNEXPECTED_MESSAGE,
62 ZEBRA_ERR_NETLINK_BAD_SEQUENCE,
63 ZEBRA_ERR_BAD_MULTIPATH_NUM,
64 ZEBRA_ERR_PREFIX_PARSE_ERROR,
65 ZEBRA_ERR_MAC_ADD_FAILED,
66 ZEBRA_ERR_VNI_DEL_FAILED,
67 ZEBRA_ERR_VTEP_ADD_FAILED,
68 ZEBRA_ERR_VNI_ADD_FAILED,
69 };
70
71 void zebra_error_init(void);
72
73 #endif /* __ZEBRA_ERRORS_H__ */