mpExperienceIperf: remove sndbuf stuff

This commit is contained in:
Quentin De Coninck 2016-06-03 17:51:15 +02:00
parent b527380234
commit 65d128ee70

View File

@ -45,7 +45,7 @@ class MpExperienceIperf(MpExperience):
def getClientCmd(self): def getClientCmd(self):
s = MpExperienceIperf.IPERF_BIN + " -c " + self.mpConfig.getServerIP() + \ s = MpExperienceIperf.IPERF_BIN + " -c " + self.mpConfig.getServerIP() + \
" -t 10 -w " + str(int(self.xpParam.getParam(MpParamXp.RMEM).split()[-1]) / 2000) + "K &>" + MpExperienceIperf.IPERF_LOG " -t 10 &>" + MpExperienceIperf.IPERF_LOG
print(s) print(s)
return s return s