blob: cfefdb7665cd9e8b943802e9503113036ea3c161 (
plain)
1
2
3
4
5
6
|
#!/usr/bin/env python
def callback(simulator):
simulator.log("Network update!")
new_lat_eth0=simulator.netmat["eth0"]["latency"]+1/2
simulator.update_network({"eth0":{"bandwidth":simulator.netmat["eth0"]["bandwidth"], "latency":new_lat_eth0, "is_wired":True}})
|