fix
[oweals/gnunet.git] / src / dv / plugin_transport_dv.c
index feb8a2e574867c2dcbc01f0b86f588966f9c40f7..5e2a6bd6c072ee677f9b760d3a156241fdebb070 100644 (file)
@@ -162,16 +162,16 @@ handle_dv_message_received (void *cls, struct GNUNET_PeerIdentity *sender,
                    distance);
   GNUNET_free_non_null (my_id);
 #endif
-  struct GNUNET_TRANSPORT_ATS_Information ats[2];
+  struct GNUNET_ATS_Information ats[2];
 
-  ats[0].type = htonl (GNUNET_TRANSPORT_ATS_QUALITY_NET_DISTANCE);
+  ats[0].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
   ats[0].value = htonl (distance);
-  ats[1].type = htonl (GNUNET_TRANSPORT_ATS_ARRAY_TERMINATOR);
+  ats[1].type = htonl (GNUNET_ATS_ARRAY_TERMINATOR);
   ats[1].value = htonl (0);
 
   plugin->env->receive (plugin->env->cls, sender,
                         (struct GNUNET_MessageHeader *) msg,
-                        (const struct GNUNET_TRANSPORT_ATS_Information *) &ats,
+                        (const struct GNUNET_ATS_Information *) &ats,
                         2, NULL, sender_address, sender_address_len);
 
 }