Skip to content

Commit

Permalink
Scheduler: buffer packets for forwarding if forwarding is enabled (an…
Browse files Browse the repository at this point in the history
  • Loading branch information
apfitzge authored Jul 26, 2024
1 parent 6a24235 commit dc8dd33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ impl SchedulerController {
},
true,
),
BufferedPacketsDecision::Forward => (MAX_PACKET_RECEIVE_TIME, false),
BufferedPacketsDecision::Forward => (MAX_PACKET_RECEIVE_TIME, self.forwarder.is_some()),
BufferedPacketsDecision::ForwardAndHold | BufferedPacketsDecision::Hold => {
(MAX_PACKET_RECEIVE_TIME, true)
}
Expand Down

0 comments on commit dc8dd33

Please sign in to comment.