Home
last modified time | relevance | path

Searched refs:FIN (Results 1 – 9 of 9) sorted by relevance

/Zephyr-latest/tests/net/tcp/src/
Dmain.c379 return tester_prepare_tcp_pkt(af, src_port, dst_port, FIN | ACK, in prepare_fin_ack_packet()
386 return tester_prepare_tcp_pkt(af, src_port, dst_port, FIN, NULL, 0U); in prepare_fin_packet()
560 test_verify_flags(th, FIN | ACK); in handle_client_test()
741 test_verify_flags(th, FIN | ACK); in handle_server_test()
1162 test_verify_flags(th, FIN | ACK); in handle_client_fin_wait_2_test()
1287 test_verify_flags(th, FIN | ACK); in handle_client_fin_wait_2_failure_test()
1434 test_verify_flags(th, FIN | ACK); in handle_data_fin1_test()
1448 test_verify_flags(th, FIN | ACK); in handle_data_fin1_test()
1567 test_verify_flags(th, FIN | ACK); in handle_data_during_fin1_test()
1689 test_verify_flags(th, FIN | ACK); in handle_client_closing_test()
[all …]
/Zephyr-latest/subsys/net/ip/
Dtcp.c300 if (flags & FIN) { in tcp_flags()
1901 ret = tcp_out_ext(conn, FIN | ACK, NULL, in tcp_resend_data()
3094 if (th && FL(&fl, &, FIN, th_seq(th) == conn->ack)) { in tcp_in()
3121 tcp_out(conn, FIN | ACK); in tcp_in()
3246 tcp_out(conn, FIN | ACK); in tcp_in()
3297 if ((len > 0) || FL(&fl, &, FIN)) { in tcp_in()
3320 tcp_out(conn, FIN); in tcp_in()
3377 if (FL(&fl, &, FIN, net_tcp_seq_cmp(th_seq(th) + len, conn->ack) == 0)) { in tcp_in()
3394 tcp_out_ext(conn, FIN | ACK, NULL, conn->seq - 1); in tcp_in()
3410 tcp_out_ext(conn, FIN | ACK, NULL, conn->seq - 1); in tcp_in()
[all …]
Dtcp_private.h185 FIN = BIT(0), enumerator
/Zephyr-latest/doc/releases/
Drelease-notes-1.11.rst307 * :github:`4779` - net: tcp: FIN isn't sent when performing active close.
Drelease-notes-1.13.rst574 * :github:`8188` - net: TCP: FIN packets aren't queued for retransmission, loss leads to TCP timeou…
Drelease-notes-3.1.rst708 all FIN packet retransmissions.
1533 * :github:`44507` - net: tcp: No retries of a TCP FIN message
Drelease-notes-3.7.rst1546 * Fixed a bug, where data bytes included in FIN packet were ignored.
Drelease-notes-2.7.rst708 * Fixed a bug, where [FIN, PSH, ACK] was not handled properly in
Drelease-notes-3.2.rst2388 * :github:`46350` - net: tcp: When the first FIN message is lost, the connection does not properly …