blob: 38c42280d09c782bb8a4cabc285f521d5d9a1074 (
plain)
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
87
88
89
90
91
|
/*
ldb database library
Copyright (C) Simo Sorce 2005
** NOTE! The following LGPL license applies to the ldb
** library. This does NOT imply that all of Samba is released
** under the LGPL
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*
* Name: ldb
*
* Component: ldb header
*
* Description: defines error codes following RFC 2251 ldap error codes
*
* Author: Simo Sorce
*/
#ifndef _LDB_ERRORS_H_
#define _LDB_ERRORS_H_ 1
/*
* Not all error codes make sense for ldb,
* but they are keept here for reference anyway
*/
#define LDB_ERR_SUCCESS 0
#define LDB_ERR_OPERATIONS_ERROR 1
#define LDB_ERR_PROTOCOL_ERROR 2
#define LDB_ERR_TIME_LIMIT_EXCEEDED 3
#define LDB_ERR_SIZE_LIMIT_EXCEEDED 4
#define LDB_ERR_COMPARE_FALSE 5
#define LDB_ERR_COMPARE_TRUE 6
#define LDB_ERR_AUTH_METHOD_NOT_SUPPORTED 7
#define LDB_ERR_STRONG_AUTH_REQUIRED 8
/* 9 RESERVED */
#define LDB_ERR_REFERRAL 10
#define LDB_ERR_ADMIN_LIMIT_EXCEEDED 11
#define LDB_ERR_UNAVAILABLE_CRITICAL_EXTENSION 12
#define LDB_ERR_CONFIDENTIALITY_REQUIRED 13
#define LDB_ERR_SASL_BIND_IN_PROGRESS 14
#define LDB_ERR_NO_SUCH_ATTRIBUTE 16
#define LDB_ERR_UNDEFINED_ATTRIBUTE_TYPE 17
#define LDB_ERR_INAPPROPRIATE_MATCHING 18
#define LDB_ERR_CONSTRAINT_VIOLAION 19
#define LDB_ERR_ATTRIBUTE_OR_VALUE_EXISTS 20
#define LDB_ERR_INVALID_ATTRIBUTE_SYNTAX 21
/* 22-31 unused */
#define LDB_ERR_NO_SUCH_OBJECT 32
#define LDB_ERR_ALIAS_PROBLEM 33
#define LDB_ERR_INVALID_DN_SYNTAX 34
/* 53 RESERVED */
#define LDB_ERR_ALIAS_DEREFERENCING_PROBLEM 36
/* 37-47 unused */
#define LDB_ERR_INAPPROPRIATE_AUTHENTICATION 48
#define LDB_ERR_INVALID_CREDENTIALS 49
#define LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS 50
#define LDB_ERR_BUSY 51
#define LDB_ERR_UNAVAILABLE 52
#define LDB_ERR_UNWILLING_TO_PERFORM 53
#define LDB_ERR_LOOP_DETECT 54
/* 55-63 unused */
#define LDB_ERR_NAMING_VIOLATION 64
#define LDB_ERR_OBJECT_CLASS_VIOLATION 65
#define LDB_ERR_NOT_ALLOWED_ON_NON_LEAF 66
#define LDB_ERR_NOT_ALLOWED_ON_RDN 67
#define LDB_ERR_ENTRY_ALREADY_EXISTS 68
#define LDB_ERR_OBJECT_CLASS_MODS_PROHIBITED 69
/* 70 RESERVED FOR CLDAP */
#define LDB_ERR_AFFECTS_MULTIPLE_DSAS 71
/* 72-79 unused */
#define LDB_ERR_OTHER 80
/* 81-90 RESERVED for APIs */
#endif /* _LDB_ERRORS_H_ */
|