X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/6f5ec5fdc42f96a8fe95f4b846b163d4dc92e0c8..325b135f0ee33c6c0242a14e2f58a54fb571b032:/neighbor.cpp diff --git a/neighbor.cpp b/neighbor.cpp index e7a4666..3340f8f 100644 --- a/neighbor.cpp +++ b/neighbor.cpp @@ -1,18 +1,16 @@ -#include #include "neighbor.h" +#include +#include + neighbor::neighbor(const char* hostname) + : host((hostdata* )MSG_host_get_data(MSG_get_host_by_name(hostname))) + , load(std::numeric_limits::infinity()) + , debt(0.0) + , to_send(0.0) { - load = std::numeric_limits::infinity(); - debt = 0.0; - name = xbt_strdup(hostname); - ctrl_mbox = bprintf("%s_ctrl", hostname); - data_mbox = bprintf("%s_data", hostname); } neighbor::~neighbor() { - free(data_mbox); - free(ctrl_mbox); - free(name); }