]> git.proxmox.com Git - mirror_frr.git/blob - isisd/isis_errors.h
*: auto-convert to SPDX License IDs
[mirror_frr.git] / isisd / isis_errors.h
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * ISIS-specific error messages.
4 * Copyright (C) 2018 Cumulus Networks, Inc.
5 * Donald Sharp
6 */
7
8 #ifndef __ISIS_ERRORS_H__
9 #define __ISIS_ERRORS_H__
10
11 #include "lib/ferr.h"
12
13 enum isis_log_refs {
14 EC_ISIS_PACKET = ISIS_FERR_START,
15 EC_ISIS_CONFIG,
16 EC_ISIS_SID_OVERFLOW,
17 EC_ISIS_SID_COLLISION,
18 };
19
20 extern void isis_error_init(void);
21
22 #endif