Fixed bug #51528 (Bug when parsing WND_SCALE option)

Signed-off-by: goldsimon <goldsimon@gmx.de>
This commit is contained in:
Pascal Quantin 2017-07-24 21:38:47 +02:00 committed by goldsimon
parent afee9013ad
commit 2e78b6dcae

View File

@ -1900,11 +1900,11 @@ tcp_parseopt(struct tcp_pcb *pcb)
LWIP_DEBUGF(TCP_INPUT_DEBUG, ("tcp_parseopt: bad length\n"));
return;
}
/* An WND_SCALE option with the right option length. */
data = tcp_getoptbyte();
/* If syn was received with wnd scale option,
activate wnd scale opt, but only if this is not a retransmission */
if ((flags & TCP_SYN) && !(pcb->flags & TF_WND_SCALE)) {
/* An WND_SCALE option with the right option length. */
data = tcp_getoptbyte();
pcb->snd_scale = data;
if (pcb->snd_scale > 14U) {
pcb->snd_scale = 14U;