X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c19a107a096f503e67217fb178fa98eb742ceb4d..3a76359d818d1d9c0b3dad7d552e5b32b4595335:/src/surf/network_wifi.cpp diff --git a/src/surf/network_wifi.cpp b/src/surf/network_wifi.cpp index d741ce48e1..a39a7ca3fa 100644 --- a/src/surf/network_wifi.cpp +++ b/src/surf/network_wifi.cpp @@ -17,14 +17,12 @@ namespace resource { * Resource * ************/ -NetworkWifiLink::NetworkWifiLink(NetworkCm02Model* model, const std::string& name, std::vector bandwidths, - lmm::System* system) - : LinkImpl(model, name, system->constraint_new(this, 1)) +NetworkWifiLink::NetworkWifiLink(const std::string& name, std::vector bandwidths, lmm::System* system) + : LinkImpl(name) { + this->set_constraint(system->constraint_new(this, 1)); for (auto bandwidth : bandwidths) bandwidths_.push_back({bandwidth, 1.0, nullptr}); - - simgrid::s4u::Link::on_creation(*get_iface()); } void NetworkWifiLink::set_host_rate(const s4u::Host* host, int rate_level)