Infra: Decommission 3n-hsw - NICs
[csit.git] / resources / libraries / python / HoststackUtil.py
index e797c3c..2f093ce 100644 (file)
@@ -100,6 +100,11 @@ class HoststackUtil():
             if u"time" in iperf3_attributes:
                 iperf3_cmd[u"args"] += \
                     f" --time {iperf3_attributes[u'time']}"
+            if iperf3_attributes[u"udp"]:
+                iperf3_cmd[u"args"] += u" --udp"
+                iperf3_cmd[u"args"] += f" --bandwidth {iperf3_attributes[u'bandwidth']}"
+            if iperf3_attributes[u"length"] > 0:
+                iperf3_cmd[u"args"] += f" --length {iperf3_attributes[u'length']}"
         return iperf3_cmd
 
     @staticmethod