modules/pm/er_PM_errors.h
/* [<][>][^][v][top][bottom][index][help] */
FUNCTIONS
This source file includes following functions.
1 /***************************************
2 $Revision: 1.1 $
3
4 Radix tree (rx). er_PM_errors.h - definition of errors for the radix module
5
6 Status: NOT REVUED, TESTED,
7
8 Design and implementation by: Andrei Robachevsky
9
10 ******************/ /******************
11 Copyright (c) 1999 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_PM_OK=0,
35 LOW_PM_BADINP,
36 LOW_PM_INVRANG,
37 LOW_PM_UKNSRC,
38 LOW_PM_NOSQLC,
39 LOW_PM_NOSERN
40 } PM_err_code_t;
41
42 /* step 2 */
43
44 #define PM_OK ER_SEV_I + (FAC_PM<<16) + LOW_PM_OK
45 #define PM_BADINP ER_SEV_W + (FAC_PM<<16) + LOW_PM_BADINP
46 #define PM_INVRANG ER_SEV_W + (FAC_PM<<16) + LOW_PM_INVRANG
47 #define PM_UKNSRC ER_SEV_W + (FAC_PM<<16) + LOW_PM_UKNSRC
48 #define PM_NOSQLC ER_SEV_E + (FAC_PM<<16) + LOW_PM_NOSQLC
49 #define PM_NOSERN ER_SEV_E + (FAC_PM<<16) + LOW_PM_NOSERN
50
51 /* step 3 */
52
53 #ifdef ER_IMPL
54
55 er_list_t PM_mod_err[]={
56 { ERDUP(PM_OK), "OK" },
57 { ERDUP(PM_BADINP), "Bad input" },
58 { ERDUP(PM_INVRANG), "Invalid serials range" },
59 { ERDUP(PM_UKNSRC), "Unknown source" },
60 { ERDUP(PM_NOSQLC), "No SQL connection" },
61 { ERDUP(PM_NOSERN), "Cannot get serials" },
62 ER_LASTTXT
63 };
64
65 #endif /* ER_IMPL */