Netservices modded to read fragmented HTTP respsonse/payload from special purpose server - 180 bytes only

Committer:
RodColeman
Date:
Thu Sep 08 10:41:36 2011 +0000
Revision:
0:8f5825f330b0
setDataLen hacked to 180bytes

Who changed what in which revision?

UserRevisionLine numberNew contents of line
RodColeman 0:8f5825f330b0 1 /*
RodColeman 0:8f5825f330b0 2 * Author: Adam Dunkels <adam@sics.se>
RodColeman 0:8f5825f330b0 3 *
RodColeman 0:8f5825f330b0 4 */
RodColeman 0:8f5825f330b0 5 #ifndef __LWIP_SYS_ARCH_H__
RodColeman 0:8f5825f330b0 6 #define __LWIP_SYS_ARCH_H__
RodColeman 0:8f5825f330b0 7
RodColeman 0:8f5825f330b0 8 typedef unsigned int u32_t;
RodColeman 0:8f5825f330b0 9
RodColeman 0:8f5825f330b0 10 #ifdef __cplusplus
RodColeman 0:8f5825f330b0 11 extern "C" {
RodColeman 0:8f5825f330b0 12 #endif
RodColeman 0:8f5825f330b0 13
RodColeman 0:8f5825f330b0 14 //DG 2010
RodColeman 0:8f5825f330b0 15 void sys_init(void); /* To be called first */
RodColeman 0:8f5825f330b0 16 u32_t sys_jiffies(void); /* since power up. */
RodColeman 0:8f5825f330b0 17
RodColeman 0:8f5825f330b0 18 /** Returns the current time in milliseconds,
RodColeman 0:8f5825f330b0 19 * may be the same as sys_jiffies or at least based on it. */
RodColeman 0:8f5825f330b0 20 u32_t sys_now(void);
RodColeman 0:8f5825f330b0 21
RodColeman 0:8f5825f330b0 22 #ifdef __cplusplus
RodColeman 0:8f5825f330b0 23 }
RodColeman 0:8f5825f330b0 24 #endif
RodColeman 0:8f5825f330b0 25
RodColeman 0:8f5825f330b0 26
RodColeman 0:8f5825f330b0 27 #endif /* __LWIP_ARCH_CC_H__ */