]>
Commit | Line | Data |
---|---|---|
1 | // SPDX-License-Identifier: GPL-2.0-or-later | |
2 | /* | |
3 | * RIP-specific error messages. | |
4 | * Copyright (C) 2018 Cumulus Networks, Inc. | |
5 | * Donald Sharp | |
6 | */ | |
7 | ||
8 | #ifndef __RIP_ERRORS_H__ | |
9 | #define __RIP_ERRORS_H__ | |
10 | ||
11 | #include "lib/ferr.h" | |
12 | ||
13 | enum rip_log_refs { | |
14 | EC_RIP_PACKET = RIP_FERR_START, | |
15 | RIP_ERR_CONFIG, | |
16 | }; | |
17 | ||
18 | extern void rip_error_init(void); | |
19 | ||
20 | #endif |