lwIP
tcp_pcb::rcv_ann_right_edge
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
ESP-IDF Framework and Examples
lwIP
tcp_pcb::rcv_ann_right_edge
tcp_pcb::rcv_ann_right_edge field
Syntax
Show:
Summary
Declaration
from
tcp.h:286
u32_t
rcv_ann_right_edge
;
Examples
References
from
examples
Code
Location
Referrer
u32_t
rcv_ann_right_edge
;
/* announced right edge of window */
tcp.h:286
ESP_LWIP_LOGI
(
"recv_nxt=%"
PRIu32
" recv_wnd=%"
TCPWNDSIZE_F
" recv_ann_wnd=%"
TCPWNDSIZE_F
" recv_ann_right_edge=%"
PRIu32
,
pcb
->
rcv_nxt
,
pcb
->
rcv_wnd
,
pcb
->
rcv_ann_wnd
,
pcb
->
rcv_ann_right_edge
)
;
lwip_debug.c:85
dbg_lwip_tcp_pcb_one_show()
if
(
TCP_SEQ_GEQ
(
new_right_edge
,
pcb
->
rcv_ann_right_edge
+
LWIP_MIN
(
(
TCP_WND
/
2
)
,
pcb
->
mss
)
)
)
{
tcp.c:947
tcp_update_rcv_ann_wnd()
return
new_right_edge
-
pcb
->
rcv_ann_right_edge
;
tcp.c:950
tcp_update_rcv_ann_wnd()
if
(
TCP_SEQ_GT
(
pcb
->
rcv_nxt
,
pcb
->
rcv_ann_right_edge
)
)
{
tcp.c:952
tcp_update_rcv_ann_wnd()
u32_t
new_rcv_ann_wnd
=
pcb
->
rcv_ann_right_edge
-
pcb
->
rcv_nxt
;
tcp.c:958
tcp_update_rcv_ann_wnd()
pcb
->
rcv_ann_right_edge
=
pcb
->
rcv_nxt
;
tcp.c:1163
tcp_connect()
npcb
->
rcv_ann_right_edge
=
npcb
->
rcv_nxt
;
tcp_in.c:695
tcp_listen_input()
pcb
->
rcv_ann_right_edge
=
pcb
->
rcv_nxt
;
tcp_in.c:885
tcp_process()
pcb
->
rcv_ann_right_edge
=
pcb
->
rcv_nxt
+
pcb
->
rcv_ann_wnd
;
tcp_out.c:1495
tcp_output_segment()
pcb
->
rcv_ann_right_edge
=
pcb
->
rcv_nxt
+
pcb
->
rcv_ann_wnd
;
tcp_out.c:1869
tcp_output_alloc_header()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
tcp_pcb::rcv_ann_right_edge
is written by 5 functions and is read by 2 functions:
tcp_listen_input()
tcp_process()
tcp_output_segment()
tcp_output_alloc_header()
tcp_connect()
All items filtered out
tcp_pcb::rcv_ann_right_edge
dbg_lwip_tcp_pcb_one_show()
tcp_update_rcv_ann_wnd()
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