/* [<][>][^][v][top][bottom][index][help] */
DEFINITIONS
This source file includes following functions.
- LOW_RP_OK
- LOW_RP_NOTREE
- LOW_RP_TRALEX
- LOW_RP_NOYETI
- LOW_RP_BADKEY
- RP_err_code_t
1 /***************************************
2 $Revision: 1.2 $
3
4 Radix tree (rx). er_RX_errors.h - definition of errors for the radix module
5
6 Status: NOT REVUED, TESTED,
7
8 Design and implementation by: Marek Bukowy
9
10 ******************/ /******************
11 Copyright (c) 1999,2000,2001,2002 RIPE NCC
12
13 All Rights Reserved
14
15 Permission to use, copy, modify, and distribute this software and its
16 documentation for any purpose and without fee is hereby granted,
17 provided that the above copyright notice appear in all copies and that
18 both that copyright notice and this permission notice appear in
19 supporting documentation, and that the name of the author not be
20 used in advertising or publicity pertaining to distribution of the
21 software without specific, written prior permission.
22
23 THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
24 ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS; IN NO EVENT SHALL
25 AUTHOR BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY
26 DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
27 AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
28 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
29 ***************************************/
30
31 /* step 1 */
32
33 typedef enum {
34 LOW_RP_OK=0,
/* [<][>][^][v][top][bottom][index][help] */
35 LOW_RP_NOTREE,
/* [<][>][^][v][top][bottom][index][help] */
36 LOW_RP_TRALEX,
/* [<][>][^][v][top][bottom][index][help] */
37 LOW_RP_NOYETI,
/* [<][>][^][v][top][bottom][index][help] */
38 LOW_RP_BADKEY
/* [<][>][^][v][top][bottom][index][help] */
39 } RP_err_code_t;
/* [<][>][^][v][top][bottom][index][help] */
40
41 /* step 2 */
42
43 #define RP_OK ER_SEV_I + (FAC_RP<<16) + LOW_RP_OK
44 #define RP_NOTREE ER_SEV_E + (FAC_RP<<16) + LOW_RP_NOTREE
45 #define RP_TRALEX ER_SEV_E + (FAC_RP<<16) + LOW_RP_TRALEX
46 #define RP_NOYETI ER_SEV_E + (FAC_RP<<16) + LOW_RP_NOYETI
47 #define RP_BADKEY ER_SEV_E + (FAC_RP<<16) + LOW_RP_BADKEY
48
49 /* step 3 */
50
51 #ifdef ER_IMPL
52
53 er_list_t RP_mod_err[]={
54 { ERDUP(RP_OK), "OK" },
55 { ERDUP(RP_NOTREE), "No such tree" },
56 { ERDUP(RP_TRALEX), "Tree already exists" },
57 { ERDUP(RP_NOYETI), "Not yet implemented" },
58 { ERDUP(RP_BADKEY), "Bad key" },
59 ER_LASTTXT
60 };
61
62 #endif /* ER_IMPL */