new operation queue for limiting overlay connects
[oweals/gnunet.git] / src / transport / plugin_transport_udp.h
index 5637524bca9a51771fc71ee77cbf9324415c7078..3bdf4a561144bfb1d1bc8610e7851a7ca59d9eab 100644 (file)
@@ -175,8 +175,6 @@ struct Plugin
   struct GNUNET_NETWORK_FDSet *ws_v4;
 
 
-  int with_v4_ws;
-
   /**
    * The read socket for IPv4
    */
@@ -193,8 +191,6 @@ struct Plugin
    */
   struct GNUNET_NETWORK_FDSet *ws_v6;
 
-  int with_v6_ws;
-
   /**
    * The read socket for IPv6
    */
@@ -268,11 +264,11 @@ struct Plugin
    */
   uint16_t aport;
 
-  struct UDPMessageWrapper *ipv4_queue_head;
-  struct UDPMessageWrapper *ipv4_queue_tail;
+  struct UDP_MessageWrapper *ipv4_queue_head;
+  struct UDP_MessageWrapper *ipv4_queue_tail;
 
-  struct UDPMessageWrapper *ipv6_queue_head;
-  struct UDPMessageWrapper *ipv6_queue_tail;
+  struct UDP_MessageWrapper *ipv6_queue_head;
+  struct UDP_MessageWrapper *ipv6_queue_tail;
 };