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.

lwip/arch/perf.h

Committer:
andrewbonney
Date:
2011-04-08
Revision:
0:ec559500a63f

File content as of revision 0:ec559500a63f:

/*
 * Author: Adam Dunkels <adam@sics.se>
 *
 */
#ifndef __LWIP_ARCH_PERF_H__
#define __LWIP_ARCH_PERF_H__

#define PERF_START
#define PERF_STOP(x)

#define perf_init(fname)

#if 0
#ifdef __cplusplus
inline
#endif
void perf_init(char *fname) {
  return;  
}
#endif


#endif /* __LWIP_ARCH_PERF_H__ */