Searched refs:tcp_out_ext (Results 1 – 1 of 1) sorted by relevance
/Zephyr-latest/subsys/net/ip/ |
D | tcp.c | 1540 static int tcp_out_ext(struct tcp *conn, uint8_t flags, struct net_pkt *data, in tcp_out_ext() function 1616 (void)tcp_out_ext(conn, flags, NULL /* no data */, conn->seq); in tcp_out() 1769 ret = tcp_out_ext(conn, PSH | ACK, pkt, conn->seq + conn->unacked_len); in tcp_send_data() 1901 ret = tcp_out_ext(conn, FIN | ACK, NULL, in tcp_resend_data() 2038 (void)tcp_out_ext(conn, ACK, NULL, conn->seq - 1); in tcp_send_keepalive_probe() 2049 (void)tcp_out_ext(conn, ACK, NULL, conn->seq - 1); in tcp_send_zwp() 2944 ret = tcp_out_ext(conn, SYN, NULL /* no data */, conn->seq); 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() 3518 tcp_out_ext(conn, FIN | ACK, NULL, conn->seq - 1); in tcp_in() [all …]
|