TwitterExample with newer library (2012Aug)

Dependencies:   EthernetNetIf HTTPClient mbed

Committer:
nxpfan
Date:
Wed Aug 29 03:50:19 2012 +0000
Revision:
0:075157567b0c
simple twitter example with newer library

Who changed what in which revision?

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