I have a problem getting this to work. Server only recieves half of the data being sent. Whats wrong

Dependencies:   mbed

Committer:
tax
Date:
Tue Mar 29 13:20:15 2011 +0000
Revision:
0:66300c77c6e9

        

Who changed what in which revision?

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