We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9da8ed5 commit ac75f78Copy full SHA for ac75f78
src/perf/lib/PerfClient.cpp
@@ -229,12 +229,8 @@ PerfClient::Init(
229
TcpDefaultExecutionProfile)); // Client defaults to using LowLatency profile
230
} else {
231
MsQuicSettings Settings;
232
- if (UseSendBuffering) {
233
- Settings.SetSendBufferingEnabled(UseSendBuffering != 0);
234
- }
235
- if (!UsePacing) {
236
- Settings.SetPacingEnabled(UsePacing != 0);
237
+ Settings.SetSendBufferingEnabled(UseSendBuffering != 0);
+ Settings.SetPacingEnabled(UsePacing != 0);
238
const char* IoMode = GetValue(argc, argv, "io");
239
if (IoMode && IsValue(IoMode, "xdp")) {
240
Settings.SetXdpEnabled(true);
0 commit comments