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