lwIP
tcp_clear_flags
is only used within lwIP.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
lwIP
tcp_clear_flags
tcp_clear_flags macro
Syntax
Show:
Summary
Declaration
from
tcp.h:424
#define
tcp_clear_flags
(
pcb
,
clr_flags
)
do
{
(
pcb
)
->
flags
=
(
tcpflags_t
)
(
(
pcb
)
->
flags
&
(
tcpflags_t
)
(
~
(
clr_flags
)
&
TCP_ALLFLAGS
)
)
;
}
while
(
0
)
Arguments
Argument
pcb
clr_flags
Examples
References
from
examples
Code
Location
#define
tcp_clear_flags
(
pcb
,
clr_flags
)
do
{
(
pcb
)
->
flags
=
(
tcpflags_t
)
(
(
pcb
)
->
flags
&
(
tcpflags_t
)
(
~
(
clr_flags
)
&
TCP_ALLFLAGS
)
)
;
}
while
(
0
)
tcp.h:424
tcp_clear_flags
(
pcb
,
TF_BACKLOGPEND
)
;
tcp.c:325
tcp_clear_flags
(
pcb
,
TF_ACK_DELAY
|
TF_ACK_NOW
)
;
tcp.c:1511
tcp_clear_flags
(
pcb
,
TF_CLOSEPEND
)
;
tcp.c:1516
tcp_clear_flags
(
pcb
,
TF_CLOSEPEND
)
;
tcp.c:1836
#define
tcp_nagle_enable
(
pcb
)
tcp_clear_flags
(
pcb
,
TF_NODELAY
)
tcp.h:440
tcp_clear_flags
(
pcb
,
TF_ACK_DELAY
)
;
tcp_in.c:842
tcp_clear_flags
(
pcb
,
TF_INFR
)
;
tcp_in.c:1258
tcp_clear_flags
(
pcb
,
TF_RTO
)
;
tcp_in.c:1348
tcp_clear_flags
(
pcb
,
TF_RTO
)
;
tcp_in.c:1351
tcp_clear_flags
(
pcb
,
TF_ACK_DELAY
|
TF_ACK_NOW
)
;
tcp_out.c:1375
tcp_clear_flags
(
pcb
,
TF_NAGLEMEMERR
)
;
tcp_out.c:1422
tcp_clear_flags
(
pcb
,
TF_ACK_DELAY
|
TF_ACK_NOW
)
;
tcp_out.c:2130
tcp_clear_flags
(
pcb
,
TF_ACK_DELAY
)
;
\
tcp_priv.h:452
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out