Skip to content

Commit

Permalink
re-enable mtu probing
Browse files Browse the repository at this point in the history
  • Loading branch information
jthomas43 committed Nov 7, 2023
1 parent 28ad7b7 commit 5b7e626
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/udx.c
Original file line number Diff line number Diff line change
Expand Up @@ -735,13 +735,11 @@ fill_window (udx_stream_t *stream) {
stream->pkts_inflight++;
stream->inflight += pkt->size;

/* There is an issue somewhere when probes run it seems, disabling for now
if (stream->mtu_probe_wanted && mtu_probeify_packet(pkt, stream->mtu_probe_size)) {
stream->mtu_probe_seq[stream->mtu_probe_count] = pkt->seq;
stream->mtu_probe_count++;
stream->mtu_probe_wanted = false;
}
*/

assert(seq_compare(stream->seq_flushed, pkt->seq) <= 0);
stream->seq_flushed = pkt->seq + 1;
Expand Down

0 comments on commit 5b7e626

Please sign in to comment.