apreq_error.h
Go to the documentation of this file.
1 /*
2 ** Licensed to the Apache Software Foundation (ASF) under one or more
3 ** contributor license agreements. See the NOTICE file distributed with
4 ** this work for additional information regarding copyright ownership.
5 ** The ASF licenses this file to You under the Apache License, Version 2.0
6 ** (the "License"); you may not use this file except in compliance with
7 ** the License. You may obtain a copy of the License at
8 **
9 ** http://www.apache.org/licenses/LICENSE-2.0
10 **
11 ** Unless required by applicable law or agreed to in writing, software
12 ** distributed under the License is distributed on an "AS IS" BASIS,
13 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ** See the License for the specific language governing permissions and
15 ** limitations under the License.
16 */
17 
18 #ifndef APREQ_ERROR_H
19 #define APREQ_ERROR_H
20 
21 #include "apr_errno.h"
22 #include "apreq.h"
23 
24 #ifdef __cplusplus
25  extern "C" {
26 #endif
27 
32 APREQ_DECLARE(char *)
33 apreq_strerror(apr_status_t s, char *buf, apr_size_t bufsize);
34 
43 #ifndef APR_EBADARG
48 #define APR_EBADARG APR_BADARG /* XXX: don't use APR_BADARG */
49 #endif
50 
52 #define APREQ_ERROR_GENERAL APR_OS_START_USERERR
54 #define APREQ_ERROR_TAINTED (APREQ_ERROR_GENERAL + 1)
56 #define APREQ_ERROR_INTERRUPT (APREQ_ERROR_GENERAL + 2)
57 
59 #define APREQ_ERROR_BADDATA (APREQ_ERROR_GENERAL + 10)
61 #define APREQ_ERROR_BADCHAR (APREQ_ERROR_BADDATA + 1)
63 #define APREQ_ERROR_BADSEQ (APREQ_ERROR_BADDATA + 2)
65 #define APREQ_ERROR_BADATTR (APREQ_ERROR_BADDATA + 3)
67 #define APREQ_ERROR_BADHEADER (APREQ_ERROR_BADDATA + 4)
69 #define APREQ_ERROR_BADUTF8 (APREQ_ERROR_BADDATA + 5)
70 
72 #define APREQ_ERROR_NODATA (APREQ_ERROR_GENERAL + 20)
74 #define APREQ_ERROR_NOTOKEN (APREQ_ERROR_NODATA + 1)
76 #define APREQ_ERROR_NOATTR (APREQ_ERROR_NODATA + 2)
78 #define APREQ_ERROR_NOHEADER (APREQ_ERROR_NODATA + 3)
80 #define APREQ_ERROR_NOPARSER (APREQ_ERROR_NODATA + 4)
81 
82 
84 #define APREQ_ERROR_MISMATCH (APREQ_ERROR_GENERAL + 30)
86 #define APREQ_ERROR_OVERLIMIT (APREQ_ERROR_MISMATCH + 1)
88 #define APREQ_ERROR_UNDERLIMIT (APREQ_ERROR_MISMATCH + 2)
90 #define APREQ_ERROR_NOTEMPTY (APREQ_ERROR_MISMATCH + 3)
91 
92 
93 #ifdef __cplusplus
94  }
95 #endif
96 
97 #endif /* APREQ_ERROR_H */
Main header file...
#define APREQ_DECLARE(d)
Definition: apreq.h:50
char * apreq_strerror(apr_status_t s, char *buf, apr_size_t bufsize)
int apr_status_t