X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/f29b38ef2a056daa14bbfda2fce78063faa773d4..92d7eb81980a40dda0715b23e874a1537cf3adb8:/neighbor.h?ds=sidebyside diff --git a/neighbor.h b/neighbor.h index 13d1108..7700cb3 100644 --- a/neighbor.h +++ b/neighbor.h @@ -1,22 +1,34 @@ #ifndef NEIGHBOR_H #define NEIGHBOR_H -#include -#include +#include +#include "hostdata.h" class neighbor { public: - neighbor(const char* const name_) - : name(name_) - , load(std::numeric_limits::infinity()) { - } - const std::string& getName() const { return name; } - double getLoad() const { return load; } - void setLoad(double l) { load = l; } + neighbor(const char* hostname); + ~neighbor(); + + const char* get_name() const { return host->get_name(); } + const char* get_ctrl_mbox() const { return host->get_ctrl_mbox(); } + const char* get_data_mbox() const { return host->get_data_mbox(); } + + double get_load() const { return load; } + void set_load(double amount) { load = amount; } + + double get_debt() const { return debt; } + void set_debt(double amount) { debt = amount; } + + double get_to_send() const { return to_send; } + void set_to_send(double amount) { to_send = amount; } private: - std::string name; + const hostdata* host; + double load; + double debt; + + double to_send; }; #endif // !NEIGHBOR_H