1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
/* result.c
*/
/*
* Copyright (c) 2004-2017 by Internet Systems Consortium, Inc. ("ISC")
* Copyright (c) 1999-2003 by Internet Software Consortium
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*
* Internet Systems Consortium, Inc.
* 950 Charter Street
* Redwood City, CA 94063
* <info@isc.org>
* https://www.isc.org/
*
*/
#include "dhcpd.h"
/*
* In the previous code the results started at 36
* rather than ISC_RESULTCLASS_DHCP + 0
* ISC_R_NOTCONNECTED was + 4 (40), it has been superseeded by the isc version
*/
static const char *text[DHCP_R_NRESULTS] = {
"host unknown", /* 0 */
"protocol version mismatch", /* 1 */
"protocol error", /* 2 */
"invalid argument", /* 3 */
"data not yet available", /* 4 */
"object unchanged", /* 5 */
"more than one object matches key", /* 6 */
"key conflict", /* 7 */
"parse error(s) occurred", /* 8 */
"no key specified", /* 9 */
"zone TSIG key not known", /* 10 */
"invalid TSIG key", /* 11 */
"operation in progress", /* 12 */
"DNS format error", /* 13 */
"DNS server failed", /* 14 */
"no such domain", /* 15 */
"not implemented", /* 16 */
"refused", /* 17 */
"domain already exists", /* 18 */
"RRset already exists", /* 19 */
"no such RRset", /* 20 */
"not authorized", /* 21 */
"not a zone", /* 22 */
"bad DNS signature", /* 23 */
"bad DNS key", /* 24 */
"clock skew too great", /* 25 */
"no root zone", /* 26 */
"destination address required", /* 27 */
"cross-zone update", /* 28 */
"no TSIG signature", /* 29 */
"not equal", /* 30 */
"connection reset by peer", /* 31 */
"unknown attribute" /* 32 */
};
#define DHCP_RESULT_RESULTSET 2
#define DHCP_RESULT_UNAVAILABLESET 3
// This is a placeholder as we don't allow for external message catalogs yet
isc_msgcat_t * dhcp_msgcat = NULL;
isc_result_t
dhcp_result_register(void) {
isc_result_t result;
result = isc_result_register(ISC_RESULTCLASS_DHCP, DHCP_R_NRESULTS,
text, dhcp_msgcat, DHCP_RESULT_RESULTSET);
return(result);
}
|