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