82 #define APR_ENOKEY (APR_UTIL_START_STATUS + 1)
84 #define APR_ENOIV (APR_UTIL_START_STATUS + 2)
86 #define APR_EKEYTYPE (APR_UTIL_START_STATUS + 3)
88 #define APR_ENOSPACE (APR_UTIL_START_STATUS + 4)
90 #define APR_ECRYPT (APR_UTIL_START_STATUS + 5)
92 #define APR_EPADDING (APR_UTIL_START_STATUS + 6)
94 #define APR_EKEYLENGTH (APR_UTIL_START_STATUS + 7)
96 #define APR_ENOCIPHER (APR_UTIL_START_STATUS + 8)
98 #define APR_ENODIGEST (APR_UTIL_START_STATUS + 9)
100 #define APR_ENOENGINE (APR_UTIL_START_STATUS + 10)
102 #define APR_EINITENGINE (APR_UTIL_START_STATUS + 11)
104 #define APR_EREINIT (APR_UTIL_START_STATUS + 12)
106 #define APR_ENOVERIFY (APR_UTIL_START_STATUS + 13)
108 #define APR_SERVER_DOWN (APR_UTIL_START_STATUS + 101)
110 #define APR_AUTH_UNKNOWN (APR_UTIL_START_STATUS + 102)
112 #define APR_PROXY_AUTH (APR_UTIL_START_STATUS + 103)
114 #define APR_INAPPROPRIATE_AUTH (APR_UTIL_START_STATUS + 104)
116 #define APR_INVALID_CREDENTIALS (APR_UTIL_START_STATUS + 105)
118 #define APR_INSUFFICIENT_ACCESS (APR_UTIL_START_STATUS + 106)
120 #define APR_INSUFFICIENT_RIGHTS (APR_UTIL_START_STATUS + 107)
122 #define APR_CONSTRAINT_VIOLATION (APR_UTIL_START_STATUS + 108)
124 #define APR_FILTER_ERROR (APR_UTIL_START_STATUS + 109)
126 #define APR_NO_SUCH_OBJECT (APR_UTIL_START_STATUS + 110)
128 #define APR_NO_SUCH_ATTRIBUTE (APR_UTIL_START_STATUS + 111)
130 #define APR_COMPARE_TRUE (APR_UTIL_START_STATUS + 112)
132 #define APR_COMPARE_FALSE (APR_UTIL_START_STATUS + 113)
134 #define APR_NO_RESULTS_RETURNED (APR_UTIL_START_STATUS + 114)
136 #define APR_WANT_READ (APR_UTIL_START_STATUS + 115)
138 #define APR_WANT_WRITE (APR_UTIL_START_STATUS + 116)
140 #define APR_USER_CANCELLED (APR_UTIL_START_STATUS + 117)
164 #define APR_STATUS_IS_ENOKEY(s) ((s) == APR_ENOKEY)
168 #define APR_STATUS_IS_ENOIV(s) ((s) == APR_ENOIV)
172 #define APR_STATUS_IS_EKEYTYPE(s) ((s) == APR_EKEYTYPE)
176 #define APR_STATUS_IS_ENOSPACE(s) ((s) == APR_ENOSPACE)
180 #define APR_STATUS_IS_ECRYPT(s) ((s) == APR_ECRYPT)
184 #define APR_STATUS_IS_EPADDING(s) ((s) == APR_EPADDING)
188 #define APR_STATUS_IS_EKEYLENGTH(s) ((s) == APR_EKEYLENGTH)
192 #define APR_STATUS_IS_ENOCIPHER(s) ((s) == APR_ENOCIPHER)
196 #define APR_STATUS_IS_ENODIGEST(s) ((s) == APR_ENODIGEST)
200 #define APR_STATUS_IS_ENOENGINE(s) ((s) == APR_ENOENGINE)
204 #define APR_STATUS_IS_EINITENGINE(s) ((s) == APR_EINITENGINE)
208 #define APR_STATUS_IS_EREINIT(s) ((s) == APR_EREINIT)
212 #define APR_STATUS_IS_ENOVERIFY(s) ((s) == APR_ENOVERIFY)
216 #define APR_STATUS_IS_SERVER_DOWN(s) ((s) == APR_SERVER_DOWN)
220 #define APR_STATUS_IS_AUTH_UNKNOWN(s) ((s) == APR_AUTH_UNKNOWN)
224 #define APR_STATUS_IS_PROXY_AUTH(s) ((s) == APR_PROXY_AUTH)
229 #define APR_STATUS_IS_INAPPROPRIATE_AUTH(s) ((s) == APR_INAPPROPRIATE_AUTH)
233 #define APR_STATUS_IS_INVALID_CREDENTIALS(s) ((s) == APR_INVALID_CREDENTIALS)
237 #define APR_STATUS_IS_INSUFFICIENT_ACCESS(s) ((s) == APR_INSUFFICIENT_ACCESS)
241 #define APR_STATUS_IS_INSUFFICIENT_RIGHTS(s) ((s) == APR_INSUFFICIENT_RIGHTS)
245 #define APR_STATUS_IS_CONSTRAINT_VIOLATION(s) ((s) == APR_CONSTRAINT_VIOLATION)
249 #define APR_STATUS_IS_FILTER_ERROR(s) ((s) == APR_FILTER_ERROR)
253 #define APR_STATUS_IS_NO_SUCH_OBJECT(s) ((s) == APR_NO_SUCH_OBJECT)
257 #define APR_STATUS_IS_NO_SUCH_ATTRIBUTE(s) ((s) == APR_NO_SUCH_ATTRIBUTE)
261 #define APR_STATUS_IS_COMPARE_TRUE(s) ((s) == APR_COMPARE_TRUE)
265 #define APR_STATUS_IS_COMPARE_FALSE(s) ((s) == APR_COMPARE_FALSE)
269 #define APR_STATUS_IS_NO_RESULTS_RETURNED(s) ((s) == APR_NO_RESULTS_RETURNED)
273 #define APR_STATUS_IS_WANT_READ(s) ((s) == APR_WANT_READ)
277 #define APR_STATUS_IS_WANT_WRITE(s) ((s) == APR_WANT_WRITE)
281 #define APR_STATUS_IS_USER_CANCELLED(s) ((s) == APR_USER_CANCELLED)
315 apr_pool_t *p,
const char *reason,
int rc,
const char *fmt, ...)
316 __attribute__((format(printf,5,6)))
317 __attribute__((nonnull(2)));
APR Platform Definitions.
struct apr_pool_t apr_pool_t
Definition: apr_pools.h:60
struct apu_err_t apu_err_t
apu_err_t * apr_errprintf(apu_err_t *result, apr_pool_t *p, const char *reason, int rc, const char *fmt,...)
Definition: apu_errno.h:289
const char * msg
Definition: apu_errno.h:293
const char * reason
Definition: apu_errno.h:291
int rc
Definition: apu_errno.h:295