Version of http://mbed.org/cookbook/NetServicesTribute with setting set the same for LPC2368

Dependents:   UDPSocketExample 24LCxx_I2CApp WeatherPlatform_pachube HvZServerLib ... more

Committer:
simon
Date:
Tue Nov 23 14:15:36 2010 +0000
Revision:
0:350011bf8be7
Experimental version for testing UDP

Who changed what in which revision?

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