Home
last modified time | relevance | path

Searched refs:unsent (Results 1 – 13 of 13) sorted by relevance

/third_party/lwip/test/unit/tcp/
Dtest_tcp.c664 check_seqnos(pcb->unsent, 6, seqnos); in START_TEST()
672 check_seqnos(pcb->unsent, 4, &seqnos[2]); in START_TEST()
684 check_seqnos(pcb->unsent, 3, &seqnos[3]); in START_TEST()
702 EXPECT(pcb->unsent == NULL); in START_TEST()
752 check_seqnos(pcb->unsent, 6, seqnos); in START_TEST()
760 check_seqnos(pcb->unsent, 4, &seqnos[2]); in START_TEST()
771 check_seqnos(pcb->unsent, 5, &seqnos[1]); in START_TEST()
779 EXPECT(pcb->unsent == NULL); in START_TEST()
1012 EXPECT_RET(pcb->unsent != NULL); in START_TEST()
1028 EXPECT_RET(pcb->unsent == NULL); in START_TEST()
[all …]
/third_party/lwip/src/core/
Dtcp_out.c269 pcb->unsent != NULL || in tcp_pbuf_prealloc()
354 pcb->unacked != NULL || pcb->unsent != NULL); in tcp_write_checks()
357 pcb->unacked == NULL && pcb->unsent == NULL); in tcp_write_checks()
488 if (pcb->unsent != NULL) { in tcp_write()
493 for (last_unsent = pcb->unsent; last_unsent->next != NULL; in tcp_write()
783 pcb->unsent = queue; in tcp_write()
799 pcb->unacked != NULL || pcb->unsent != NULL); in tcp_write()
820 pcb->unsent != NULL); in tcp_write()
857 useg = pcb->unsent; in tcp_split_unsent_seg()
1019 if (pcb->unsent != NULL) { in tcp_send_fin()
[all …]
Dtcp_in.c918 rseg = pcb->unsent;
920 pcb->unsent = rseg->next;
1027 pcb->unsent == NULL) {
1040 pcb->unsent == NULL) {
1057 if ((flags & TCP_ACK) && ackno == pcb->snd_nxt && pcb->unsent == NULL) {
1067 if ((flags & TCP_ACK) && ackno == pcb->snd_nxt && pcb->unsent == NULL) {
1319 pcb->unacked = tcp_free_acked_segments(pcb, pcb->unacked, "unacked", pcb->unsent);
1326 pcb->unsent = tcp_free_acked_segments(pcb, pcb->unsent, "unsent", pcb->unacked);
1339 if (pcb->unsent == NULL) {
1359 if ((pcb->unsent == NULL) ||
[all …]
Dtcp.c765 if (pcb->unsent != NULL) { in tcp_abandon()
766 tcp_segs_free(pcb->unsent); in tcp_abandon()
1415 LWIP_ASSERT("tcp_slowtimr: persist ticking with empty send buffer", pcb->unsent != NULL);
1461 …if ((tcp_rexmit_rto_prepare(pcb) == ERR_OK) || ((pcb->unacked == NULL) && (pcb->unsent != NULL))) {
2325 if (pcb->unsent != NULL) {
2342 tcp_segs_free(pcb->unsent);
2344 pcb->unacked = pcb->unsent = NULL;
2376 LWIP_ASSERT("unsent segments leaking", pcb->unsent == NULL);
/third_party/lwip/src/include/lwip/priv/
Dtcp_priv.h102 (((tpcb)->unsent != NULL) && (((tpcb)->unsent->next != NULL) || \
103 ((tpcb)->unsent->len >= (tpcb)->mss))) || \
/third_party/libwebsockets/minimal-examples/raw/minimal-raw-adopt-udp/
DREADME.md23 unsent part next time.
/third_party/lwip/src/include/lwip/
Dtcp.h338 struct tcp_seg *unsent; /* Unsent (queued) segments. */ member
/third_party/lwip/src/api/
Dapi_msg.c1030 if ((conn->linger >= 0) && (conn->pcb.tcp->unsent || conn->pcb.tcp->unacked)) {
/third_party/lwip/
DCHANGELOG413 * tcp_out.c: fixed bug #49533 (start persist timer when unsent seg can't fit
2222 * tcp_out.c: Fixed bug #27905: FIN isn't combined with data on unsent
2472 (and unsent->next == NULL)
2501 Fixed by sorting the unsent and unacked queues (segments are inserted at the
/third_party/node/doc/api/
Dhttp.md665 unsent, it will flush them to the stream. If the request is
2293 Finishes the outgoing message. If any parts of the body are unsent, it will
Dchild_process.md1478 backlog of unsent messages exceeds a threshold that makes it unwise to send
/third_party/libwebsockets/READMEs/
DREADME.coding.md837 unsent part next time (which may involve adding new protocol headers to
/third_party/ffmpeg/doc/
Dprotocols.texi1609 The number of seconds that the socket waits for unsent data when closing.