mirror of
https://gitlab.isc.org/isc-projects/dhcp
synced 2025-09-03 15:56:00 +00:00
Add key conflict result code
This commit is contained in:
@@ -69,8 +69,9 @@ ISC_LANG_BEGINDECLS
|
|||||||
#define ISC_R_NOTYET 41
|
#define ISC_R_NOTYET 41
|
||||||
#define ISC_R_UNCHANGED 42
|
#define ISC_R_UNCHANGED 42
|
||||||
#define ISC_R_MULTIPLE 43
|
#define ISC_R_MULTIPLE 43
|
||||||
|
#define ISC_R_KEYCONFLICT 44
|
||||||
|
|
||||||
#define ISC_R_NRESULTS 44 /* Number of results */
|
#define ISC_R_NRESULTS 45 /* Number of results */
|
||||||
|
|
||||||
char * isc_result_totext(isc_result_t);
|
char * isc_result_totext(isc_result_t);
|
||||||
isc_result_t isc_result_register(unsigned int base,
|
isc_result_t isc_result_register(unsigned int base,
|
||||||
|
@@ -68,6 +68,7 @@ static char *text[ISC_R_NRESULTS] = {
|
|||||||
"data not yet available", /* 41 */
|
"data not yet available", /* 41 */
|
||||||
"object unchanged", /* 42 */
|
"object unchanged", /* 42 */
|
||||||
"more than one object matches key", /* 43 */
|
"more than one object matches key", /* 43 */
|
||||||
|
"key conflict", /* 44 */
|
||||||
};
|
};
|
||||||
|
|
||||||
char *isc_result_totext (isc_result_t result)
|
char *isc_result_totext (isc_result_t result)
|
||||||
|
Reference in New Issue
Block a user