libidn
1.33
src
libidn-1.33
lib
strerror-stringprep.c
Go to the documentation of this file.
1
/* strerror-stringprep.c --- Convert stringprep errors into text.
2
Copyright (C) 2004-2016 Simon Josefsson
3
4
This file is part of GNU Libidn.
5
6
GNU Libidn is free software: you can redistribute it and/or
7
modify it under the terms of either:
8
9
* the GNU Lesser General Public License as published by the Free
10
Software Foundation; either version 3 of the License, or (at
11
your option) any later version.
12
13
or
14
15
* the GNU General Public License as published by the Free
16
Software Foundation; either version 2 of the License, or (at
17
your option) any later version.
18
19
or both in parallel, as here.
20
21
GNU Libidn is distributed in the hope that it will be useful,
22
but WITHOUT ANY WARRANTY; without even the implied warranty of
23
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24
General Public License for more details.
25
26
You should have received copies of the GNU General Public License and
27
the GNU Lesser General Public License along with this program. If
28
not, see <http://www.gnu.org/licenses/>. */
29
30
#ifdef HAVE_CONFIG_H
31
# include "config.h"
32
#endif
33
34
#include "
stringprep.h
"
35
36
#include "gettext.h"
37
#define _(String) dgettext (PACKAGE, String)
38
77
const
char
*
78
stringprep_strerror
(
Stringprep_rc
rc)
79
{
80
const
char
*p;
81
82
bindtextdomain (PACKAGE, LOCALEDIR);
83
84
switch
(rc)
85
{
86
case
STRINGPREP_OK
:
87
p =
_
(
"Success"
);
88
break
;
89
90
case
STRINGPREP_CONTAINS_UNASSIGNED
:
91
p =
_
(
"Forbidden unassigned code points in input"
);
92
break
;
93
94
case
STRINGPREP_CONTAINS_PROHIBITED
:
95
p =
_
(
"Prohibited code points in input"
);
96
break
;
97
98
case
STRINGPREP_BIDI_BOTH_L_AND_RAL
:
99
p =
_
(
"Conflicting bidirectional properties in input"
);
100
break
;
101
102
case
STRINGPREP_BIDI_LEADTRAIL_NOT_RAL
:
103
p =
_
(
"Malformed bidirectional string"
);
104
break
;
105
106
case
STRINGPREP_BIDI_CONTAINS_PROHIBITED
:
107
p =
_
(
"Prohibited bidirectional code points in input"
);
108
break
;
109
110
case
STRINGPREP_TOO_SMALL_BUFFER
:
111
p =
_
(
"Output would exceed the buffer space provided"
);
112
break
;
113
114
case
STRINGPREP_PROFILE_ERROR
:
115
p =
_
(
"Error in stringprep profile definition"
);
116
break
;
117
118
case
STRINGPREP_FLAG_ERROR
:
119
p =
_
(
"Flag conflict with profile"
);
120
break
;
121
122
case
STRINGPREP_UNKNOWN_PROFILE
:
123
p =
_
(
"Unknown profile"
);
124
break
;
125
case
STRINGPREP_ICONV_ERROR
:
126
p =
_
(
"Could not convert string in locale encoding."
);
127
break
;
128
129
case
STRINGPREP_NFKC_FAILED
:
130
p =
_
(
"Unicode normalization failed (internal error)"
);
131
break
;
132
133
case
STRINGPREP_MALLOC_ERROR
:
134
p =
_
(
"Cannot allocate memory"
);
135
break
;
136
137
default
:
138
p =
_
(
"Unknown error"
);
139
break
;
140
}
141
142
return
p;
143
}
STRINGPREP_FLAG_ERROR
Definition:
stringprep.h:69
STRINGPREP_BIDI_BOTH_L_AND_RAL
Definition:
stringprep.h:63
STRINGPREP_CONTAINS_PROHIBITED
Definition:
stringprep.h:62
stringprep_strerror
const char * stringprep_strerror(Stringprep_rc rc)
Definition:
strerror-stringprep.c:78
STRINGPREP_PROFILE_ERROR
Definition:
stringprep.h:68
STRINGPREP_TOO_SMALL_BUFFER
Definition:
stringprep.h:67
stringprep.h
STRINGPREP_MALLOC_ERROR
Definition:
stringprep.h:74
STRINGPREP_CONTAINS_UNASSIGNED
Definition:
stringprep.h:61
STRINGPREP_BIDI_CONTAINS_PROHIBITED
Definition:
stringprep.h:65
_
#define _(String)
Definition:
strerror-stringprep.c:37
STRINGPREP_NFKC_FAILED
Definition:
stringprep.h:73
Stringprep_rc
Stringprep_rc
Definition:
stringprep.h:57
STRINGPREP_OK
Definition:
stringprep.h:59
STRINGPREP_ICONV_ERROR
Definition:
stringprep.h:71
STRINGPREP_BIDI_LEADTRAIL_NOT_RAL
Definition:
stringprep.h:64
STRINGPREP_UNKNOWN_PROFILE
Definition:
stringprep.h:70
Generated by
1.8.13