ucspi-ssl
0.99e
TLS encryption for IPv6 communication
ucspi-ssl-0.99e
src
error.c
Go to the documentation of this file.
1
/* Public domain. */
2
3
#include <errno.h>
4
#include "
error.h
"
5
6
/* warning: as coverage improves here, should update error_{str,temp} */
7
8
int
error_intr
=
9
#ifdef EINTR
10
EINTR;
11
#else
12
-1;
13
#endif
14
15
int
error_nomem
=
16
#ifdef ENOMEM
17
ENOMEM;
18
#else
19
-2;
20
#endif
21
22
int
error_noent
=
23
#ifdef ENOENT
24
ENOENT;
25
#else
26
-3;
27
#endif
28
29
int
error_txtbsy
=
30
#ifdef ETXTBSY
31
ETXTBSY;
32
#else
33
-4;
34
#endif
35
36
int
error_io
=
37
#ifdef EIO
38
EIO;
39
#else
40
-5;
41
#endif
42
43
int
error_exist
=
44
#ifdef EEXIST
45
EEXIST;
46
#else
47
-6;
48
#endif
49
50
int
error_timeout
=
51
#ifdef ETIMEDOUT
52
ETIMEDOUT;
53
#else
54
-7;
55
#endif
56
57
int
error_inprogress
=
58
#ifdef EINPROGRESS
59
EINPROGRESS;
60
#else
61
-8;
62
#endif
63
64
int
error_wouldblock
=
65
#ifdef EWOULDBLOCK
66
EWOULDBLOCK;
67
#else
68
-9;
69
#endif
70
71
int
error_again
=
72
#ifdef EAGAIN
73
EAGAIN;
74
#else
75
-10;
76
#endif
77
78
int
error_pipe
=
79
#ifdef EPIPE
80
EPIPE;
81
#else
82
-11;
83
#endif
84
85
int
error_perm
=
86
#ifdef EPERM
87
EPERM;
88
#else
89
-12;
90
#endif
91
92
int
error_acces
=
93
#ifdef EACCES
94
EACCES;
95
#else
96
-13;
97
#endif
98
99
int
error_nodevice
=
100
#ifdef ENXIO
101
ENXIO;
102
#else
103
-14;
104
#endif
105
106
int
error_proto
=
107
#ifdef EPROTO
108
EPROTO;
109
#else
110
-15;
111
#endif
112
113
int
error_isdir
=
114
#ifdef EISDIR
115
EISDIR;
116
#else
117
-16;
118
#endif
119
120
int
error_connrefused
=
121
#ifdef ECONNREFUSED
122
ECONNREFUSED;
123
#else
124
-17;
125
#endif
126
127
int
error_notdir
=
128
#ifdef ENOTDIR
129
ENOTDIR;
130
#else
131
-18;
132
#endif
133
134
int
error_rofs
=
135
#ifdef EROFS
136
EROFS;
137
#else
138
-19;
139
#endif
140
141
int
error_connreset
=
142
#ifdef ECONNRESET
143
ECONNRESET;
144
#else
145
-20;
146
#endif
error_connreset
int error_connreset
Definition:
error.c:141
error_acces
int error_acces
Definition:
error.c:92
error_exist
int error_exist
Definition:
error.c:43
error_proto
int error_proto
Definition:
error.c:106
error_again
int error_again
Definition:
error.c:71
error_pipe
int error_pipe
Definition:
error.c:78
error_connrefused
int error_connrefused
Definition:
error.c:120
error_wouldblock
int error_wouldblock
Definition:
error.c:64
error_nomem
int error_nomem
Definition:
error.c:15
error_nodevice
int error_nodevice
Definition:
error.c:99
error_notdir
int error_notdir
Definition:
error.c:127
error.h
error_txtbsy
int error_txtbsy
Definition:
error.c:29
error_rofs
int error_rofs
Definition:
error.c:134
error_intr
int error_intr
Definition:
error.c:8
error_noent
int error_noent
Definition:
error.c:22
error_perm
int error_perm
Definition:
error.c:85
error_timeout
int error_timeout
Definition:
error.c:50
error_isdir
int error_isdir
Definition:
error.c:113
error_io
int error_io
Definition:
error.c:36
error_inprogress
int error_inprogress
Definition:
error.c:57
Generated on Wed Jul 11 2018 22:50:46 for ucspi-ssl by
1.8.13