- fix doxygen
[oweals/gnunet.git] / src / ats / gnunet-service-ats_addresses.h
index ad34c94f257f525ec9f22efd0c60c60d0e9c6b88..33ff5869dc18dcbfe88e4562afa3398408c6cbe0 100644 (file)
 
 struct ATS_Address
 {
+  struct ATS_Address *next;
+
+  struct ATS_Address *prev;
+
   struct GNUNET_PeerIdentity peer;
 
   size_t addr_len;
@@ -46,6 +50,8 @@ struct ATS_Address
 
   char *plugin;
 
+  void *mlp_information;
+
   struct GNUNET_ATS_Information *ats;
 
   struct GNUNET_TIME_Relative atsp_latency;
@@ -73,6 +79,10 @@ struct ATS_Address
    */
   int active;
 
+  /**
+   * Is this the address for this peer in use?
+   */
+  int used;
 };
 
 /**