]> git.proxmox.com Git - mirror_frr.git/blob - lib/lib_errors.h
zebra: Allow ns delete to happen after under/over flow checks
[mirror_frr.git] / lib / lib_errors.h
1 /*
2 * Library-specific error messages.
3 * Copyright (C) 2018 Cumulus Networks, Inc.
4 * Donald Sharp
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 __LIB_ERRORS_H__
22 #define __LIB_ERRORS_H__
23
24 #include "lib/ferr.h"
25
26 enum lib_log_refs {
27 EC_LIB_PRIVILEGES = LIB_FERR_START,
28 EC_LIB_VRF_START,
29 EC_LIB_SOCKET,
30 EC_LIB_ZAPI_MISSMATCH,
31 EC_LIB_ZAPI_ENCODE,
32 EC_LIB_ZAPI_SOCKET,
33 EC_LIB_SYSTEM_CALL,
34 EC_LIB_VTY,
35 EC_LIB_INTERFACE,
36 EC_LIB_NS,
37 EC_LIB_DEVELOPMENT,
38 EC_LIB_ZMQ,
39 EC_LIB_UNAVAILABLE,
40 EC_LIB_SNMP,
41 EC_LIB_STREAM,
42 EC_LIB_LINUX_NS,
43 EC_LIB_SLOW_THREAD,
44 EC_LIB_RMAP_RECURSION_LIMIT,
45 EC_LIB_BACKUP_CONFIG,
46 EC_LIB_VRF_LENGTH,
47 EC_LIB_YANG_MODULE_LOAD,
48 EC_LIB_YANG_MODULE_LOADED_ALREADY,
49 EC_LIB_YANG_DATA_CONVERT,
50 EC_LIB_YANG_DATA_TRUNCATED,
51 EC_LIB_YANG_UNKNOWN_DATA_PATH,
52 EC_LIB_YANG_DNODE_NOT_FOUND,
53 EC_LIB_YANG_TRANSLATOR_LOAD,
54 EC_LIB_YANG_TRANSLATION_ERROR,
55 EC_LIB_NB_DATABASE,
56 EC_LIB_NB_CB_UNNEEDED,
57 EC_LIB_NB_CB_MISSING,
58 EC_LIB_NB_CB_INVALID_PRIO,
59 EC_LIB_NB_CBS_VALIDATION,
60 EC_LIB_NB_CB_CONFIG_VALIDATE,
61 EC_LIB_NB_CB_CONFIG_PREPARE,
62 EC_LIB_NB_CB_CONFIG_ABORT,
63 EC_LIB_NB_CB_CONFIG_APPLY,
64 EC_LIB_NB_CB_STATE,
65 EC_LIB_NB_CB_RPC,
66 EC_LIB_NB_CANDIDATE_INVALID,
67 EC_LIB_NB_CANDIDATE_EDIT_ERROR,
68 EC_LIB_NB_OPERATIONAL_DATA,
69 EC_LIB_NB_TRANSACTION_CREATION_FAILED,
70 EC_LIB_NB_TRANSACTION_RECORD_FAILED,
71 EC_LIB_LIBYANG,
72 EC_LIB_LIBYANG_PLUGIN_LOAD,
73 EC_LIB_CONFD_INIT,
74 EC_LIB_CONFD_DATA_CONVERT,
75 EC_LIB_LIBCONFD,
76 EC_LIB_SYSREPO_INIT,
77 EC_LIB_SYSREPO_DATA_CONVERT,
78 EC_LIB_LIBSYSREPO,
79 EC_LIB_ID_CONSISTENCY,
80 EC_LIB_ID_EXHAUST,
81 };
82
83 extern void lib_error_init(void);
84
85 #endif