X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/6f5ec5fdc42f96a8fe95f4b846b163d4dc92e0c8..f4125505064e3ff346b31ab9e48f894672e5a7a7:/neighbor.cpp?ds=sidebyside diff --git a/neighbor.cpp b/neighbor.cpp index e7a4666..8715396 100644 --- a/neighbor.cpp +++ b/neighbor.cpp @@ -1,18 +1,16 @@ -#include #include "neighbor.h" neighbor::neighbor(const char* hostname) + : name(hostname) + , ctrl_mbox(hostname) + , data_mbox(hostname) + , load(std::numeric_limits::infinity()) + , debt(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); + ctrl_mbox += "_ctrl"; + data_mbox += "_data"; } neighbor::~neighbor() { - free(data_mbox); - free(ctrl_mbox); - free(name); }