Modified version of NetServices. Fixes an issue where connections failed should the HTTP response status line be received in a packet on its own prior to any further headers. Changes are made to the HTTPClient.cpp file's readHeaders method.

Committer:
andrewbonney
Date:
Fri Apr 08 14:39:41 2011 +0000
Revision:
0:ec559500a63f

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewbonney 0:ec559500a63f 1 /*
andrewbonney 0:ec559500a63f 2 * Author: Adam Dunkels <adam@sics.se>
andrewbonney 0:ec559500a63f 3 *
andrewbonney 0:ec559500a63f 4 */
andrewbonney 0:ec559500a63f 5 #ifndef __LWIP_ARCH_PERF_H__
andrewbonney 0:ec559500a63f 6 #define __LWIP_ARCH_PERF_H__
andrewbonney 0:ec559500a63f 7
andrewbonney 0:ec559500a63f 8 #define PERF_START
andrewbonney 0:ec559500a63f 9 #define PERF_STOP(x)
andrewbonney 0:ec559500a63f 10
andrewbonney 0:ec559500a63f 11 #define perf_init(fname)
andrewbonney 0:ec559500a63f 12
andrewbonney 0:ec559500a63f 13 #if 0
andrewbonney 0:ec559500a63f 14 #ifdef __cplusplus
andrewbonney 0:ec559500a63f 15 inline
andrewbonney 0:ec559500a63f 16 #endif
andrewbonney 0:ec559500a63f 17 void perf_init(char *fname) {
andrewbonney 0:ec559500a63f 18 return;
andrewbonney 0:ec559500a63f 19 }
andrewbonney 0:ec559500a63f 20 #endif
andrewbonney 0:ec559500a63f 21
andrewbonney 0:ec559500a63f 22
andrewbonney 0:ec559500a63f 23 #endif /* __LWIP_ARCH_PERF_H__ */