add sched option
Signed-off-by: Benjamin Hesmans <benjamin.hesmans@uclouvain.be>
This commit is contained in:
parent
9f3e42d41e
commit
b7d7df4d26
@ -1,3 +1,4 @@
|
||||
xpType:ncpv
|
||||
ncClientPort_0:33400
|
||||
clientPcap:yes
|
||||
sched:roundrobin
|
||||
|
@ -3,6 +3,7 @@ from mpParam import MpParam
|
||||
class MpParamXp(MpParam):
|
||||
|
||||
RMEM = "rmem"
|
||||
SCHED = "sched"
|
||||
KERNELPM = "kpm"
|
||||
CLIENTPCAP = "clientPcap"
|
||||
SERVERPCAP = "serverPcap"
|
||||
@ -21,6 +22,7 @@ class MpParamXp(MpParam):
|
||||
sysctlKey = {}
|
||||
sysctlKey[RMEM] = "net.ipv4.tcp_rmem"
|
||||
sysctlKey[KERNELPM] = "net.mptcp.mptcp_path_manager"
|
||||
sysctlKey[SCHED] = "net.mptcp.mptcp_scheduler"
|
||||
|
||||
sysctlListClient = []
|
||||
sysctlListServer = []
|
||||
@ -29,6 +31,7 @@ class MpParamXp(MpParam):
|
||||
|
||||
defaultValue[RMEM] = "10240 87380 16777216"
|
||||
defaultValue[KERNELPM] = "fullmesh"
|
||||
defaultValue[SCHED] = "default"
|
||||
|
||||
defaultValue[CLIENTPCAP] = "no"
|
||||
defaultValue[SERVERPCAP] = "no"
|
||||
|
Loading…
Reference in New Issue
Block a user