Lines Matching refs:sent
443 /** Provoke fast retransmission by duplicate ACKs and then recover by ACKing all sent data.
789 /** Provoke fast retransmission by duplicate ACKs and then recover by ACKing all sent data.
860 /* send the last packet, now a complete window has been sent */
912 u8_t sent;
914 ret = pbuf_copy_partial(txcounters.tx_packets, &sent, 1, 40U);
916 EXPECT(sent == expected);
945 * that already has been sent before. */
1010 /* data3 not sent yet (nagle) */
1014 /* disable nagle for this test so data to sent segment can be added below... */
1024 /* data3 sent */
1132 /* Ensure no new data was sent */
1150 /* Ensure no new data was sent */
1480 /* check maximum number of 1 byte probes were sent */
1597 /* verify 1/2 MSS segment sent, 1/4 MSS still buffered */
1617 u8_t sent[TCP_MSS / 2];
1619 ret = pbuf_copy_partial(txcounters.tx_packets, &sent, TCP_MSS / 2, 40U);
1621 EXPECT(memcmp(sent, &tx_data[3 * TCP_MSS], TCP_MSS / 2) == 0);
1634 /* ensure remaining segment was sent */
1645 u8_t sent[TCP_MSS / 4];
1647 ret = pbuf_copy_partial(txcounters.tx_packets, &sent, TCP_MSS / 4, 40U);
1649 EXPECT(memcmp(sent, &tx_data[(3 * TCP_MSS) + TCP_MSS / 2], TCP_MSS / 4) == 0);