LwIP
tcp_pcb::refused_data
is only used within LwIP.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
STM32 Libraries and Samples
LwIP
tcp_pcb::refused_data
tcp_pcb::refused_data field
Syntax
Show:
Summary
Declaration
from
tcp.h:344
struct
pbuf
*
refused_data
;
Examples
References
from
examples
Code
Location
Referrer
struct
pbuf
*
refused_data
;
/* Data previously received but not yet taken by upper layer */
tcp.h:344
if
(
(
pcb
->
refused_data
!=
NULL
)
||
(
pcb
->
rcv_wnd
!=
TCP_WND_MAX
(
pcb
)
)
)
{
tcp.c:353
tcp_close_shutdown()
if
(
pcb
->
refused_data
!=
NULL
)
{
tcp.c:532
tcp_shutdown()
pbuf_free
(
pcb
->
refused_data
)
;
tcp.c:533
tcp_shutdown()
pcb
->
refused_data
=
NULL
;
tcp.c:534
tcp_shutdown()
if
(
pcb
->
refused_data
!=
NULL
)
{
tcp.c:1509
tcp_fasttmr()
u8_t
refused_flags
=
pcb
->
refused_data
->
flags
;
tcp.c:1552
tcp_process_refused_data()
struct
pbuf
*
refused_data
=
pcb
->
refused_data
;
tcp.c:1555
tcp_process_refused_data()
pcb
->
refused_data
=
NULL
;
tcp.c:1560
tcp_process_refused_data()
pcb
->
refused_data
=
refused_data
;
tcp.c:1595
tcp_process_refused_data()
if
(
pcb
->
refused_data
!=
NULL
)
{
tcp.c:2139
tcp_pcb_purge()
pbuf_free
(
pcb
->
refused_data
)
;
tcp.c:2141
tcp_pcb_purge()
pcb
->
refused_data
=
NULL
;
tcp.c:2142
tcp_pcb_purge()
if
(
pcb
->
refused_data
!=
NULL
)
{
tcp_in.c:422
tcp_input()
(
(
pcb
->
refused_data
!=
NULL
)
&&
(
tcplen
>
0
)
)
)
{
tcp_in.c:424
tcp_input()
LWIP_ASSERT
(
"pcb->refused_data == NULL"
,
pcb
->
refused_data
==
NULL
)
;
tcp_in.c:486
tcp_input()
pcb
->
refused_data
=
recv_data
;
tcp_in.c:518
tcp_input()
if
(
pcb
->
refused_data
!=
NULL
)
{
tcp_in.c:532
tcp_input()
pcb
->
refused_data
->
flags
|=
PBUF_FLAG_TCP_FIN
;
tcp_in.c:534
tcp_input()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
tcp_pcb::refused_data
is written by 4 functions and is read by 6 functions:
tcp_shutdown()
tcp_process_refused_data()
tcp_pcb_purge()
tcp_input()
All items filtered out
tcp_pcb::refused_data
tcp_close_shutdown()
tcp_shutdown()
tcp_fasttmr()
tcp_process_refused_data()
tcp_pcb_purge()
tcp_input()
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