Jonathan Caes / InetTest-8d87bc453349

Dependencies:   DS1307 TextLCD mbed

Committer:
JonathanCaes
Date:
Thu Dec 18 10:34:38 2014 +0000
Revision:
0:a16f60a71395
Project C mbed

Who changed what in which revision?

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