Commit 7148ae80 authored by Antoine Kaufmann's avatar Antoine Kaufmann Committed by Antoine Kaufmann
Browse files

experiments: add MACStart flag to e2e global config

parent b2bf86e0
......@@ -110,9 +110,13 @@ class E2EGlobalConfig(E2EBase):
super().__init__()
self.category = "Global"
self.stop_time = ""
self.mac_start = 0
def ns3_config(self) -> str:
self.mapping.update({"StopTime": self.stop_time})
self.mapping.update({
"StopTime": self.stop_time,
"MACStart": self.mac_start
})
return super().ns3_config()
def add_component(self, component: E2EComponent) -> None:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment