]> git.proxmox.com Git - mirror_frr.git/blame - lib/lib_errors.h
isisd: implemented the 'sequence-number-skipped' notification
[mirror_frr.git] / lib / lib_errors.h
CommitLineData
b66d022e
DS
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 */
247dcce2 20
b66d022e
DS
21#ifndef __LIB_ERRORS_H__
22#define __LIB_ERRORS_H__
23
247dcce2 24#include "lib/ferr.h"
b66d022e 25
85cd2f9f 26enum lib_log_refs {
450971aa
QY
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,
1c2facd1
RW
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,
625b70e3
EDP
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,
1c2facd1
RW
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,
1a4bc045 68 EC_LIB_NB_OPERATIONAL_DATA,
1c2facd1
RW
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,
a94eca09
MS
79 EC_LIB_ID_CONSISTENCY,
80 EC_LIB_ID_EXHAUST,
b66d022e
DS
81};
82
83extern void lib_error_init(void);
84
85#endif