SNMP agent attached to SPI slave

Dependencies:   mbed

Committer:
lorcansmith
Date:
Mon Aug 13 15:07:40 2012 +0000
Revision:
0:2a53a4c3238c
v1.1 release includes ioAlarm traps

Who changed what in which revision?

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