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