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