1 /*
2  * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without modification,
6  * are permitted provided that the following conditions are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright notice,
9  *    this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright notice,
11  *    this list of conditions and the following disclaimer in the documentation
12  *    and/or other materials provided with the distribution.
13  * 3. The name of the author may not be used to endorse or promote products
14  *    derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
17  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
19  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
20  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
21  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
24  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
25  * OF SUCH DAMAGE.
26  *
27  * This file is part of the lwIP TCP/IP stack.
28  *
29  * Author: Adam Dunkels <adam@sics.se>
30  *
31  */
32 #ifndef __LWIP_ARCH_H__
33 #define __LWIP_ARCH_H__
34 
35 #ifndef LITTLE_ENDIAN
36 #define LITTLE_ENDIAN 1234
37 #endif
38 
39 #ifndef BIG_ENDIAN
40 #define BIG_ENDIAN 4321
41 #endif
42 
43 #include "arch/cc.h"
44 
45 #ifndef PACK_STRUCT_BEGIN
46 #define PACK_STRUCT_BEGIN
47 #endif /* PACK_STRUCT_BEGIN */
48 
49 #ifndef PACK_STRUCT_END
50 #define PACK_STRUCT_END
51 #endif /* PACK_STRUCT_END */
52 
53 #ifndef PACK_STRUCT_FIELD
54 #define PACK_STRUCT_FIELD(x) x
55 #endif /* PACK_STRUCT_FIELD */
56 
57 #ifdef LWIP_PROVIDE_ERRNO
58 
59 #define  EPERM     1  /* Operation not permitted */
60 #define  ENOENT     2  /* No such file or directory */
61 #define  ESRCH     3  /* No such process */
62 #define  EINTR     4  /* Interrupted system call */
63 #define  EIO     5  /* I/O error */
64 #define  ENXIO     6  /* No such device or address */
65 #define  E2BIG     7  /* Arg list too long */
66 #define  ENOEXEC     8  /* Exec format error */
67 #define  EBADF     9  /* Bad file number */
68 #define  ECHILD    10  /* No child processes */
69 #define  EAGAIN    11  /* Try again */
70 #define  ENOMEM    12  /* Out of memory */
71 #define  EACCES    13  /* Permission denied */
72 #define  EFAULT    14  /* Bad address */
73 #define  ENOTBLK    15  /* Block device required */
74 #define  EBUSY    16  /* Device or resource busy */
75 #define  EEXIST    17  /* File exists */
76 #define  EXDEV    18  /* Cross-device link */
77 #define  ENODEV    19  /* No such device */
78 #define  ENOTDIR    20  /* Not a directory */
79 #define  EISDIR    21  /* Is a directory */
80 #define  EINVAL    22  /* Invalid argument */
81 #define  ENFILE    23  /* File table overflow */
82 #define  EMFILE    24  /* Too many open files */
83 #define  ENOTTY    25  /* Not a typewriter */
84 #define  ETXTBSY    26  /* Text file busy */
85 #define  EFBIG    27  /* File too large */
86 #define  ENOSPC    28  /* No space left on device */
87 #define  ESPIPE    29  /* Illegal seek */
88 #define  EROFS    30  /* Read-only file system */
89 #define  EMLINK    31  /* Too many links */
90 #define  EPIPE    32  /* Broken pipe */
91 #define  EDOM    33  /* Math argument out of domain of func */
92 #define  ERANGE    34  /* Math result not representable */
93 #define  EDEADLK    35  /* Resource deadlock would occur */
94 #define  ENAMETOOLONG  36  /* File name too long */
95 #define  ENOLCK    37  /* No record locks available */
96 #define  ENOSYS    38  /* Function not implemented */
97 #define  ENOTEMPTY  39  /* Directory not empty */
98 #define  ELOOP    40  /* Too many symbolic links encountered */
99 #define  EWOULDBLOCK  EAGAIN  /* Operation would block */
100 #define  ENOMSG    42  /* No message of desired type */
101 #define  EIDRM    43  /* Identifier removed */
102 #define  ECHRNG    44  /* Channel number out of range */
103 #define  EL2NSYNC  45  /* Level 2 not synchronized */
104 #define  EL3HLT    46  /* Level 3 halted */
105 #define  EL3RST    47  /* Level 3 reset */
106 #define  ELNRNG    48  /* Link number out of range */
107 #define  EUNATCH    49  /* Protocol driver not attached */
108 #define  ENOCSI    50  /* No CSI structure available */
109 #define  EL2HLT    51  /* Level 2 halted */
110 #define  EBADE    52  /* Invalid exchange */
111 #define  EBADR    53  /* Invalid request descriptor */
112 #define  EXFULL    54  /* Exchange full */
113 #define  ENOANO    55  /* No anode */
114 #define  EBADRQC    56  /* Invalid request code */
115 #define  EBADSLT    57  /* Invalid slot */
116 
117 #define  EDEADLOCK  EDEADLK
118 
119 #define  EBFONT    59  /* Bad font file format */
120 #define  ENOSTR    60  /* Device not a stream */
121 #define  ENODATA    61  /* No data available */
122 #define  ETIME    62  /* Timer expired */
123 #define  ENOSR    63  /* Out of streams resources */
124 #define  ENONET    64  /* Machine is not on the network */
125 #define  ENOPKG    65  /* Package not installed */
126 #define  EREMOTE    66  /* Object is remote */
127 #define  ENOLINK    67  /* Link has been severed */
128 #define  EADV    68  /* Advertise error */
129 #define  ESRMNT    69  /* Srmount error */
130 #define  ECOMM    70  /* Communication error on send */
131 #define  EPROTO    71  /* Protocol error */
132 #define  EMULTIHOP  72  /* Multihop attempted */
133 #define  EDOTDOT    73  /* RFS specific error */
134 #define  EBADMSG    74  /* Not a data message */
135 #define  EOVERFLOW  75  /* Value too large for defined data type */
136 #define  ENOTUNIQ  76  /* Name not unique on network */
137 #define  EBADFD    77  /* File descriptor in bad state */
138 #define  EREMCHG    78  /* Remote address changed */
139 #define  ELIBACC    79  /* Can not access a needed shared library */
140 #define  ELIBBAD    80  /* Accessing a corrupted shared library */
141 #define  ELIBSCN    81  /* .lib section in a.out corrupted */
142 #define  ELIBMAX    82  /* Attempting to link in too many shared libraries */
143 #define  ELIBEXEC  83  /* Cannot exec a shared library directly */
144 #define  EILSEQ    84  /* Illegal byte sequence */
145 #define  ERESTART  85  /* Interrupted system call should be restarted */
146 #define  ESTRPIPE  86  /* Streams pipe error */
147 #define  EUSERS    87  /* Too many users */
148 #define  ENOTSOCK  88  /* Socket operation on non-socket */
149 #define  EDESTADDRREQ  89  /* Destination address required */
150 #define  EMSGSIZE  90  /* Message too long */
151 #define  EPROTOTYPE  91  /* Protocol wrong type for socket */
152 #define  ENOPROTOOPT  92  /* Protocol not available */
153 #define  EPROTONOSUPPORT  93  /* Protocol not supported */
154 #define  ESOCKTNOSUPPORT  94  /* Socket type not supported */
155 #define  EOPNOTSUPP  95  /* Operation not supported on transport endpoint */
156 #define  EPFNOSUPPORT  96  /* Protocol family not supported */
157 #define  EAFNOSUPPORT  97  /* Address family not supported by protocol */
158 #define  EADDRINUSE  98  /* Address already in use */
159 #define  EADDRNOTAVAIL  99  /* Cannot assign requested address */
160 #define  ENETDOWN  100  /* Network is down */
161 #define  ENETUNREACH  101  /* Network is unreachable */
162 #define  ENETRESET  102  /* Network dropped connection because of reset */
163 #define  ECONNABORTED  103  /* Software caused connection abort */
164 #define  ECONNRESET  104  /* Connection reset by peer */
165 #define  ENOBUFS    105  /* No buffer space available */
166 #define  EISCONN    106  /* Transport endpoint is already connected */
167 #define  ENOTCONN  107  /* Transport endpoint is not connected */
168 #define  ESHUTDOWN  108  /* Cannot send after transport endpoint shutdown */
169 #define  ETOOMANYREFS  109  /* Too many references: cannot splice */
170 #define  ETIMEDOUT  110  /* Connection timed out */
171 #define  ECONNREFUSED  111  /* Connection refused */
172 #define  EHOSTDOWN  112  /* Host is down */
173 #define  EHOSTUNREACH  113  /* No route to host */
174 #define  EALREADY  114  /* Operation already in progress */
175 #define  EINPROGRESS  115  /* Operation now in progress */
176 #define  ESTALE    116  /* Stale NFS file handle */
177 #define  EUCLEAN    117  /* Structure needs cleaning */
178 #define  ENOTNAM    118  /* Not a XENIX named type file */
179 #define  ENAVAIL    119  /* No XENIX semaphores available */
180 #define  EISNAM    120  /* Is a named type file */
181 #define  EREMOTEIO  121  /* Remote I/O error */
182 #define  EDQUOT    122  /* Quota exceeded */
183 
184 #define  ENOMEDIUM  123  /* No medium found */
185 #define  EMEDIUMTYPE  124  /* Wrong medium type */
186 
187 #define	ENSROK		0	/* DNS server returned answer with no data */
188 #define	ENSRNODATA	160	/* DNS server returned answer with no data */
189 #define	ENSRFORMERR	161	/* DNS server claims query was misformatted */
190 #define	ENSRSERVFAIL 162	/* DNS server returned general failure */
191 #define	ENSRNOTFOUND 163	/* Domain name not found */
192 #define	ENSRNOTIMP	164	/* DNS server does not implement requested operation */
193 #define	ENSRREFUSED	165	/* DNS server refused query */
194 #define	ENSRBADQUERY 166	/* Misformatted DNS query */
195 #define	ENSRBADNAME	167	/* Misformatted domain name */
196 #define	ENSRBADFAMILY 168	/* Unsupported address family */
197 #define	ENSRBADRESP	169	/* Misformatted DNS reply */
198 #define	ENSRCONNREFUSED	170	/* Could not contact DNS servers */
199 #define	ENSRTIMEOUT	171	/* Timeout while contacting DNS servers */
200 #define	ENSROF		172	/* End of file */
201 #define	ENSRFILE	173	/* Error reading file */
202 #define	ENSRNOMEM	174	/* Out of memory */
203 #define	ENSRDESTRUCTION	175	/* Application terminated lookup */
204 #define	ENSRQUERYDOMAINTOOLONG	176	/* Domain name is too long */
205 #define	ENSRCNAMELOOP	177	/* Domain name is too long */
206 
207 #ifndef errno
208 extern int errno;
209 #endif
210 
211 #endif /* LWIP_PROVIDE_ERRNO */
212 
213 #endif /* __LWIP_ARCH_H__ */
214