qop_errlist.c revision 1.1 1 /* $KAME: qop_errlist.c,v 1.2 2000/10/18 09:15:19 kjc Exp $ */
2 /*
3 * Copyright (C) 1999-2000
4 * Sony Computer Science Laboratories, Inc. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY SONY CSL AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL SONY CSL OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 */
27
28 const char *qop_errlist[] = {
29 "no error", /* 0 */
30 "syscall error", /* 1 */
31 "no memory", /* 2 */
32 "invalid parameter", /* 3 */
33 "out of range", /* 4 */
34 "bad interface", /* 5 */
35 "bad class", /* 6 */
36 "bad filter", /* 7 */
37 "class error", /* 8 */
38 "bad class value", /* 9 */
39 "class operation not permitted", /* 10 */
40 "filter error", /* 11 */
41 "bad filter value", /* 12 */
42 "filter shadows an existing filter", /* 13 */
43 "admission failure", /* 14 */
44 "admission failure (no bandwidth)", /* 15 */
45 "admission failure (delay)", /* 16 */
46 "admission failure (no service)", /* 17 */
47 "policy error", /* 18 */
48 };
49