aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_udp.h
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-02-22 16:15:57 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-02-22 16:15:57 +0000
commite2ce04a49a21a66546f1ff41fdc7c9fb1cef669e (patch)
tree6c37ce4678767414d2fa4decd1dcef3bd4b9bbd1 /src/transport/plugin_transport_udp.h
parente4a21ca8d3ba23928afb162f351bd43dd98c5b3c (diff)
downloadgnunet-e2ce04a49a21a66546f1ff41fdc7c9fb1cef669e.tar.gz
gnunet-e2ce04a49a21a66546f1ff41fdc7c9fb1cef669e.zip
- separated sending for ipv4 and v6
Diffstat (limited to 'src/transport/plugin_transport_udp.h')
-rw-r--r--src/transport/plugin_transport_udp.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/transport/plugin_transport_udp.h b/src/transport/plugin_transport_udp.h
index d3eb192a1..6f78a4169 100644
--- a/src/transport/plugin_transport_udp.h
+++ b/src/transport/plugin_transport_udp.h
@@ -251,9 +251,11 @@ struct Plugin
251 */ 251 */
252 uint16_t aport; 252 uint16_t aport;
253 253
254 struct UDPMessageWrapper *msg_head; 254 struct UDPMessageWrapper *ipv4_queue_head;
255 struct UDPMessageWrapper *msg_tail; 255 struct UDPMessageWrapper *ipv4_queue_tail;
256 256
257 struct UDPMessageWrapper *ipv6_queue_head;
258 struct UDPMessageWrapper *ipv6_queue_tail;
257}; 259};
258 260
259 261