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