Changeset 158 for uKadecot/trunk/uip/net/ip/uip-split.c
- Timestamp:
- Feb 20, 2016, 10:43:32 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uKadecot/trunk/uip/net/ip/uip-split.c
r157 r158 36 36 #include <string.h> 37 37 38 #include " uip-split.h"39 #include " uip.h"40 #include " uip-fw.h"41 #include " uip_arch.h"38 #include "net/ip/uip-split.h" 39 #include "net/ip/uip.h" 40 #include "net/ipv4/uip-fw.h" 41 #include "net/ip/uip_arch.h" 42 42 43 43 … … 49 49 uip_split_output(void) 50 50 { 51 u 16_t tcplen, len1, len2;51 uint16_t tcplen, len1, len2; 52 52 53 53 /* We only try to split maximum sized TCP segments. */ … … 107 107 108 108 /* uip_appdata += len1;*/ 109 memcpy(uip_appdata, (u 8_t *)uip_appdata + len1, len2);109 memcpy(uip_appdata, (uint8_t *)uip_appdata + len1, len2); 110 110 111 111 uip_add32(BUF->seqno, len1);
Note:
See TracChangeset
for help on using the changeset viewer.