Removed debug output and fixed coding style.
This commit is contained in:
parent
e716ce25a1
commit
63afff5436
|
@ -501,9 +501,9 @@ uip_connect(uip_ipaddr_t *ripaddr, u16_t rport)
|
||||||
#endif /* UIP_TCP && UIP_ACTIVE_OPEN */
|
#endif /* UIP_TCP && UIP_ACTIVE_OPEN */
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
void
|
void
|
||||||
remove_ext_hdr(void) {
|
remove_ext_hdr(void)
|
||||||
/* remove ext header - before TCP/UDP processing */
|
{
|
||||||
int i;
|
/* Remove ext header before TCP/UDP processing. */
|
||||||
if(uip_ext_len > 0) {
|
if(uip_ext_len > 0) {
|
||||||
PRINTF("Cutting ext-header before TCP send (%d)\n", uip_ext_len);
|
PRINTF("Cutting ext-header before TCP send (%d)\n", uip_ext_len);
|
||||||
memmove(((uint8_t *)UIP_TCP_BUF) - uip_ext_len, (uint8_t *)UIP_TCP_BUF,
|
memmove(((uint8_t *)UIP_TCP_BUF) - uip_ext_len, (uint8_t *)UIP_TCP_BUF,
|
||||||
|
@ -511,14 +511,9 @@ remove_ext_hdr(void) {
|
||||||
|
|
||||||
uip_len -= uip_ext_len;
|
uip_len -= uip_ext_len;
|
||||||
|
|
||||||
for(i = 0; i < uip_len - UIP_IPH_LEN; i++) {
|
/* Update the IP length. */
|
||||||
printf("%02x ", uip_buf[uip_l2_l3_hdr_len + i]);
|
UIP_IP_BUF->len[0] = (uip_len - UIP_IPH_LEN) >> 8;
|
||||||
}
|
UIP_IP_BUF->len[1] = (uip_len - UIP_IPH_LEN) & 0xff;
|
||||||
printf("\n");
|
|
||||||
|
|
||||||
/* update the IP length */
|
|
||||||
UIP_IP_BUF->len[0] = ((uip_len - UIP_IPH_LEN) >> 8);
|
|
||||||
UIP_IP_BUF->len[1] = ((uip_len - UIP_IPH_LEN) & 0xff);
|
|
||||||
uip_ext_len = 0;
|
uip_ext_len = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue