X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5b3677b425b9cc6949c1573d59ac772540cbf4b2..d6d89316ae6394f900bcb1eda993050b6969e703:/examples/msg/bittorrent/bittorrent.c diff --git a/examples/msg/bittorrent/bittorrent.c b/examples/msg/bittorrent/bittorrent.c index 863a2b6baa..a1d9b76897 100644 --- a/examples/msg/bittorrent/bittorrent.c +++ b/examples/msg/bittorrent/bittorrent.c @@ -7,7 +7,7 @@ #include "bittorrent.h" #include "peer.h" #include "tracker.h" -#include +#include #include /** @@ -38,7 +38,7 @@ int main(int argc, char *argv[]) RngStream stream; snprintf(descr, sizeof descr, "RngSream<%s>", MSG_host_get_name(host)); stream = RngStream_CreateStream(descr); - MSG_host_set_data(host, stream); + MSG_host_set_property_value(host, "stream", (char*)stream, NULL); } MSG_function_register("tracker", tracker); @@ -49,7 +49,7 @@ int main(int argc, char *argv[]) MSG_main(); xbt_dynar_foreach(host_list, i, host) { - RngStream stream = MSG_host_get_data(host); + RngStream stream = (RngStream) MSG_host_get_property_value(host, "stream"); RngStream_DeleteStream(&stream); } xbt_dynar_free(&host_list);