blob: 99839b9d9dc87acd85f80260df59d1818775f3ae (
plain)
1
2
3
4
5
6
7
|
#!/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}})
|