mirror of
https://gitlab.com/manzerbredes/esds.git
synced 2025-04-06 10:06:28 +02:00
7 lines
271 B
Python
Executable file
7 lines
271 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
def callback(simulator):
|
|
simulator.log("Network update!")
|
|
new_bw_eth0=simulator.netmat["eth0"]["bandwidth"]*2
|
|
simulator.update_network({"eth0":{"bandwidth":new_bw_eth0, "latency":simulator.netmat["eth0"]["latency"], "is_wired":True}})
|
|
|