mirror of
https://git.savannah.nongnu.org/git/lwip.git
synced 2026-05-21 07:36:55 +08:00
define and detect ECE (ECN echo) and CWR (congestion window reduced) flags. Behaviour not affected.Based on patch #1600 by arbon
This commit is contained in:
@@ -1126,6 +1126,12 @@ tcp_debug_print_flags(u8_t flags)
|
||||
if (flags & TCP_URG) {
|
||||
LWIP_DEBUGF(TCP_DEBUG, ("URG "));
|
||||
}
|
||||
if (flags & TCP_ECE) {
|
||||
LWIP_DEBUGF(TCP_DEBUG, ("ECE "));
|
||||
}
|
||||
if (flags & TCP_CWR) {
|
||||
LWIP_DEBUGF(TCP_DEBUG, ("CWR "));
|
||||
}
|
||||
}
|
||||
/*-----------------------------------------------------------------------------------*/
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user